1 // SPDX-License-Identifier: GPL-2.0+
3 * Faraday FTPCI100 PCI Bridge Controller Device Driver Implementation
5 * Copyright (C) 2011 Andes Technology Corporation
6 * Gavin Guo, Andes Technology Corporation <gavinguo@andestech.com>
7 * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
13 #include <faraday/ftpci100.h>
16 #include <asm/types.h> /* u32, u16.... used by pci.h */
18 struct ftpci100_data {
19 unsigned int reg_base;
21 unsigned int mem_base;
22 unsigned int mmio_base;
26 static struct pci_config devs[FTPCI100_MAX_FUNCTIONS];
27 static struct pci_controller local_hose;
29 static void setup_pci_bar(unsigned int bus, unsigned int dev, unsigned func,
30 unsigned char header, struct ftpci100_data *priv)
32 struct pci_controller *hose = (struct pci_controller *)&local_hose;
33 unsigned int i, tmp32, bar_no, iovsmem = 1;
36 /* A device is present, add an entry to the array */
37 devs[priv->ndevs].bus = bus;
38 devs[priv->ndevs].dev = dev;
39 devs[priv->ndevs].func = func;
41 dev_nu = PCI_BDF(bus, dev, func);
43 if ((header & 0x7f) == 0x01)
49 /* Allocate address spaces by configuring BARs */
50 for (i = 0; i < bar_no; i++) {
51 pci_hose_write_config_dword(hose, dev_nu,
52 PCI_BASE_ADDRESS_0 + i * 4, 0xffffffff);
53 pci_hose_read_config_dword(hose, dev_nu,
54 PCI_BASE_ADDRESS_0 + i * 4, &tmp32);
62 unsigned int size_mask = ~(tmp32 & 0xfffffffc);
64 if (priv->io_base & size_mask)
65 priv->io_base = (priv->io_base & ~size_mask) + \
68 devs[priv->ndevs].bar[i].addr = priv->io_base;
69 devs[priv->ndevs].bar[i].size = size_mask + 1;
71 pci_hose_write_config_dword(hose, dev_nu,
72 PCI_BASE_ADDRESS_0 + i * 4,
75 debug("Allocated IO address 0x%X-" \
76 "0x%X for Bus %d, Device %d, Function %d\n",
78 priv->io_base + size_mask, bus, dev, func);
80 priv->io_base += size_mask + 1;
83 unsigned int is_64bit = ((tmp32 & 0x6) == 0x4);
84 unsigned int is_pref = tmp32 & 0x8;
85 unsigned int size_mask = ~(tmp32 & 0xfffffff0);
86 unsigned int alloc_base;
87 unsigned int *addr_mem_base;
90 addr_mem_base = &priv->mem_base;
92 addr_mem_base = &priv->mmio_base;
94 alloc_base = *addr_mem_base;
96 if (alloc_base & size_mask)
97 alloc_base = (alloc_base & ~size_mask) \
100 pci_hose_write_config_dword(hose, dev_nu,
101 PCI_BASE_ADDRESS_0 + i * 4, alloc_base);
103 debug("Allocated %s address 0x%X-" \
104 "0x%X for Bus %d, Device %d, Function %d\n",
105 is_pref ? "MEM" : "MMIO", alloc_base,
106 alloc_base + size_mask, bus, dev, func);
108 devs[priv->ndevs].bar[i].addr = alloc_base;
109 devs[priv->ndevs].bar[i].size = size_mask + 1;
111 debug("BAR address BAR size\n");
112 debug("%010x %08d\n",
113 devs[priv->ndevs].bar[0].addr,
114 devs[priv->ndevs].bar[0].size);
116 alloc_base += size_mask + 1;
117 *addr_mem_base = alloc_base;
121 pci_hose_write_config_dword(hose, dev_nu,
122 PCI_BASE_ADDRESS_0 + i * 4, 0x0);
127 /* Enable Bus Master, Memory Space, and IO Space */
128 pci_hose_read_config_dword(hose, dev_nu, PCI_CACHE_LINE_SIZE, &tmp32);
129 pci_hose_write_config_dword(hose, dev_nu, PCI_CACHE_LINE_SIZE, 0x08);
130 pci_hose_read_config_dword(hose, dev_nu, PCI_CACHE_LINE_SIZE, &tmp32);
132 pci_hose_read_config_dword(hose, dev_nu, PCI_COMMAND, &tmp32);
141 pci_hose_write_config_dword(hose, dev_nu, PCI_COMMAND, tmp32);
144 static void pci_bus_scan(struct ftpci100_data *priv)
146 struct pci_controller *hose = (struct pci_controller *)&local_hose;
147 unsigned int bus, dev, func;
151 unsigned char header;
152 unsigned char int_pin;
153 unsigned int niobars;
161 for (bus = 0; bus < MAX_BUS_NUM; bus++)
162 for (dev = 0; dev < MAX_DEV_NUM; dev++)
163 for (func = 0; func < MAX_FUN_NUM; func++) {
164 dev_nu = PCI_BDF(bus, dev, func);
165 pci_hose_read_config_dword(hose, dev_nu,
166 PCI_VENDOR_ID, &data32);
169 * some broken boards return 0 or ~0,
170 * if a slot is empty.
172 if (data32 == 0xffffffff ||
173 data32 == 0x00000000 ||
174 data32 == 0x0000ffff ||
175 data32 == 0xffff0000)
178 pci_hose_read_config_dword(hose, dev_nu,
179 PCI_HEADER_TYPE, &tmp);
180 header = (unsigned char)tmp;
181 setup_pci_bar(bus, dev, func, header, priv);
183 devs[priv->ndevs].v_id = (u16)(data32 & \
186 devs[priv->ndevs].d_id = (u16)((data32 & \
189 /* Figure out what INTX# line the card uses */
190 pci_hose_read_config_byte(hose, dev_nu,
191 PCI_INTERRUPT_PIN, &int_pin);
193 /* assign the appropriate irq line */
194 if (int_pin > PCI_IRQ_LINES) {
195 printf("more irq lines than expect\n");
196 } else if (int_pin != 0) {
197 /* This device uses an interrupt line */
198 devs[priv->ndevs].pin = int_pin;
201 pci_hose_read_config_dword(hose, dev_nu,
202 PCI_CLASS_DEVICE, &data32);
204 debug("%06d %03d %03d " \
206 "%03d %08x %06d %08x\n",
207 priv->ndevs, devs[priv->ndevs].bus,
208 devs[priv->ndevs].dev,
209 devs[priv->ndevs].func,
210 devs[priv->ndevs].d_id,
211 devs[priv->ndevs].v_id,
212 devs[priv->ndevs].pin,
213 devs[priv->ndevs].bar[0].addr,
214 devs[priv->ndevs].bar[0].size,
221 static void ftpci_preinit(struct ftpci100_data *priv)
223 struct ftpci100_ahbc *ftpci100;
224 struct pci_controller *hose = (struct pci_controller *)&local_hose;
228 priv->reg_base = CONFIG_FTPCI100_BASE;
229 priv->io_base = CONFIG_FTPCI100_BASE + CONFIG_FTPCI100_IO_SIZE;
230 priv->mmio_base = CONFIG_FTPCI100_MEM_BASE;
231 priv->mem_base = CONFIG_FTPCI100_MEM_BASE + CONFIG_FTPCI100_MEM_SIZE;
233 ftpci100 = (struct ftpci100_ahbc *)priv->reg_base;
235 pci_config_addr = (u32) &ftpci100->conf;
236 pci_config_data = (u32) &ftpci100->data;
238 /* print device name */
239 printf("FTPCI100\n");
241 /* dump basic configuration */
242 debug("%s: Config addr is %08X, data port is %08X\n",
243 __func__, pci_config_addr, pci_config_data);
245 /* PCI memory space */
246 pci_set_region(hose->regions + 0,
251 hose->region_count++;
254 pci_set_region(hose->regions + 1,
259 hose->region_count++;
261 #if defined(CONFIG_PCI_SYS_BUS)
262 /* PCI System Memory space */
263 pci_set_region(hose->regions + 2,
267 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
268 hose->region_count++;
271 /* setup indirect read/write function */
272 pci_setup_indirect(hose, pci_config_addr, pci_config_data);
275 pci_register_hose(hose);
278 void pci_ftpci_init(void)
280 struct ftpci100_data *priv = NULL;
281 struct pci_controller *hose = (struct pci_controller *)&local_hose;
282 pci_dev_t bridge_num;
284 struct pci_device_id bridge_ids[] = {
285 {FTPCI100_BRIDGE_VENDORID, FTPCI100_BRIDGE_DEVICEID},
289 priv = malloc(sizeof(struct ftpci100_data));
292 printf("%s(): failed to malloc priv\n", __func__);
296 memset(priv, 0, sizeof(struct ftpci100_data));
300 debug("Device bus dev func deviceID vendorID pin address" \
306 * Setup the PCI Bridge Window to 1GB,
307 * it will cause USB OHCI Host controller Unrecoverable Error
310 bridge_num = pci_find_devices(bridge_ids, 0);
311 if (bridge_num == -1) {
312 printf("PCI Bridge not found\n");
315 pci_hose_write_config_dword(hose, bridge_num, PCI_MEM_BASE_SIZE1,
316 FTPCI100_BASE_ADR_SIZE(1024));