1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <common.h>
27
28#include <pci.h>
29#include <asm/processor.h>
30#include <asm/pci.h>
31#include <asm/io.h>
32
33#define SH7780_VENDOR_ID 0x1912
34#define SH7780_DEVICE_ID 0x0002
35#define SH7780_PCICR_PREFIX 0xA5000000
36#define SH7780_PCICR_PFCS 0x00000800
37#define SH7780_PCICR_FTO 0x00000400
38#define SH7780_PCICR_PFE 0x00000200
39#define SH7780_PCICR_TBS 0x00000100
40#define SH7780_PCICR_ARBM 0x00000040
41#define SH7780_PCICR_IOCS 0x00000004
42#define SH7780_PCICR_PRST 0x00000002
43#define SH7780_PCICR_CFIN 0x00000001
44
45#define p4_in(addr) (*(vu_long *)addr)
46#define p4_out(data, addr) (*(vu_long *)addr) = (data)
47#define p4_inw(addr) (*(vu_short *)addr)
48#define p4_outw(data, addr) (*(vu_short *)addr) = (data)
49
50int pci_sh4_read_config_dword(struct pci_controller *hose,
51 pci_dev_t dev, int offset, u32 *value)
52{
53 u32 par_data = 0x80000000 | dev;
54
55 p4_out(par_data | (offset & 0xfc), SH7780_PCIPAR);
56 *value = p4_in(SH7780_PCIPDR);
57
58 return 0;
59}
60
61int pci_sh4_write_config_dword(struct pci_controller *hose,
62 pci_dev_t dev, int offset, u32 value)
63{
64 u32 par_data = 0x80000000 | dev;
65
66 p4_out(par_data | (offset & 0xfc), SH7780_PCIPAR);
67 p4_out(value, SH7780_PCIPDR);
68 return 0;
69}
70
71int pci_sh7780_init(struct pci_controller *hose)
72{
73 p4_out(0x01, SH7780_PCIECR);
74
75 if (p4_inw(SH7780_PCIVID) != SH7780_VENDOR_ID
76 && p4_inw(SH7780_PCIDID) != SH7780_DEVICE_ID) {
77 printf("PCI: Unknown PCI host bridge.\n");
78 return -1;
79 }
80 printf("PCI: SH7780 PCI host bridge found.\n");
81
82
83 p4_out((SH7780_PCICR_PREFIX | SH7780_PCICR_PRST), SH7780_PCICR);
84 udelay(100000);
85 p4_out(SH7780_PCICR_PREFIX, SH7780_PCICR);
86 p4_outw(0x0047, SH7780_PCICMD);
87
88 p4_out(CONFIG_SH7780_PCI_LSR, SH7780_PCILSR0);
89 p4_out(CONFIG_SH7780_PCI_LAR, SH7780_PCILAR0);
90 p4_out(0x00000000, SH7780_PCILSR1);
91 p4_out(0, SH7780_PCILAR1);
92 p4_out(CONFIG_SH7780_PCI_BAR, SH7780_PCIMBAR0);
93 p4_out(0x00000000, SH7780_PCIMBAR1);
94
95 p4_out(0xFD000000, SH7780_PCIMBR0);
96 p4_out(0x00FC0000, SH7780_PCIMBMR0);
97
98
99 p4_out(0x08000000, SH7780_PCICSAR0);
100 p4_out(0x0000001B, SH7780_PCICSCR0);
101
102 p4_out((SH7780_PCICR_PREFIX | SH7780_PCICR_CFIN | SH7780_PCICR_ARBM
103 | SH7780_PCICR_FTO | SH7780_PCICR_PFCS | SH7780_PCICR_PFE),
104 SH7780_PCICR);
105
106 pci_sh4_init(hose);
107 return 0;
108}
109