1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <linux/pci.h>
24#include <linux/kernel.h>
25#include <linux/types.h>
26
27#include <asm/addrspace.h>
28
29#include <asm/emma/emma2rh.h>
30
31#define RTABORT (0x1<<9)
32#define RMABORT (0x1<<10)
33#define EMMA2RH_PCI_SLOT_NUM 9
34
35
36
37
38
39static int check_args(struct pci_bus *bus, u32 devfn, u32 * bus_num)
40{
41
42 if (bus->parent != NULL)
43 *bus_num = bus->number;
44 else
45 *bus_num = 0;
46
47 if (*bus_num == 0) {
48
49 if (PCI_SLOT(devfn) >= 10)
50 return PCIBIOS_DEVICE_NOT_FOUND;
51 } else {
52
53 if ((*bus_num >= 64) || (PCI_SLOT(devfn) >= 16))
54 return PCIBIOS_DEVICE_NOT_FOUND;
55 }
56 return 0;
57}
58
59static inline int set_pci_configuration_address(unsigned char bus_num,
60 unsigned int devfn, int where)
61{
62 u32 config_win0;
63
64 emma2rh_out32(EMMA2RH_PCI_INT, ~RMABORT);
65 if (bus_num == 0)
66
67
68
69 config_win0 = (1 << (22 + PCI_SLOT(devfn))) | (5 << 9);
70 else
71
72
73
74 config_win0 = (bus_num << 26) | (PCI_SLOT(devfn) << 22) |
75 (1 << 15) | (5 << 9);
76
77 emma2rh_out32(EMMA2RH_PCI_IWIN0_CTR, config_win0);
78
79 return 0;
80}
81
82static int pci_config_read(struct pci_bus *bus, unsigned int devfn, int where,
83 int size, uint32_t * val)
84{
85 u32 bus_num;
86 u32 base = KSEG1ADDR(EMMA2RH_PCI_CONFIG_BASE);
87 u32 backup_win0;
88 u32 data;
89
90 *val = 0xffffffffU;
91
92 if (check_args(bus, devfn, &bus_num) == PCIBIOS_DEVICE_NOT_FOUND)
93 return PCIBIOS_DEVICE_NOT_FOUND;
94
95 backup_win0 = emma2rh_in32(EMMA2RH_PCI_IWIN0_CTR);
96
97 if (set_pci_configuration_address(bus_num, devfn, where) < 0)
98 return PCIBIOS_DEVICE_NOT_FOUND;
99
100 data =
101 *(volatile u32 *)(base + (PCI_FUNC(devfn) << 8) +
102 (where & 0xfffffffc));
103
104 switch (size) {
105 case 1:
106 *val = (data >> ((where & 3) << 3)) & 0xffU;
107 break;
108 case 2:
109 *val = (data >> ((where & 2) << 3)) & 0xffffU;
110 break;
111 case 4:
112 *val = data;
113 break;
114 default:
115 emma2rh_out32(EMMA2RH_PCI_IWIN0_CTR, backup_win0);
116 return PCIBIOS_FUNC_NOT_SUPPORTED;
117 }
118
119 emma2rh_out32(EMMA2RH_PCI_IWIN0_CTR, backup_win0);
120
121 if (emma2rh_in32(EMMA2RH_PCI_INT) & RMABORT)
122 return PCIBIOS_DEVICE_NOT_FOUND;
123
124 return PCIBIOS_SUCCESSFUL;
125}
126
127static int pci_config_write(struct pci_bus *bus, unsigned int devfn, int where,
128 int size, u32 val)
129{
130 u32 bus_num;
131 u32 base = KSEG1ADDR(EMMA2RH_PCI_CONFIG_BASE);
132 u32 backup_win0;
133 u32 data;
134 int shift;
135
136 if (check_args(bus, devfn, &bus_num) == PCIBIOS_DEVICE_NOT_FOUND)
137 return PCIBIOS_DEVICE_NOT_FOUND;
138
139 backup_win0 = emma2rh_in32(EMMA2RH_PCI_IWIN0_CTR);
140
141 if (set_pci_configuration_address(bus_num, devfn, where) < 0)
142 return PCIBIOS_DEVICE_NOT_FOUND;
143
144
145 data =
146 *(volatile u32 *)(base + (PCI_FUNC(devfn) << 8) +
147 (where & 0xfffffffc));
148
149 switch (size) {
150 case 1:
151 shift = (where & 3) << 3;
152 data &= ~(0xffU << shift);
153 data |= ((val & 0xffU) << shift);
154 break;
155 case 2:
156 shift = (where & 2) << 3;
157 data &= ~(0xffffU << shift);
158 data |= ((val & 0xffffU) << shift);
159 break;
160 case 4:
161 data = val;
162 break;
163 default:
164 emma2rh_out32(EMMA2RH_PCI_IWIN0_CTR, backup_win0);
165 return PCIBIOS_FUNC_NOT_SUPPORTED;
166 }
167 *(volatile u32 *)(base + (PCI_FUNC(devfn) << 8) +
168 (where & 0xfffffffc)) = data;
169
170 emma2rh_out32(EMMA2RH_PCI_IWIN0_CTR, backup_win0);
171 if (emma2rh_in32(EMMA2RH_PCI_INT) & RMABORT)
172 return PCIBIOS_DEVICE_NOT_FOUND;
173
174 return PCIBIOS_SUCCESSFUL;
175}
176
177struct pci_ops emma2rh_pci_ops = {
178 .read = pci_config_read,
179 .write = pci_config_write,
180};
181