2 * Support for PCI on Celleb platform.
4 * (C) Copyright 2006-2007 TOSHIBA CORPORATION
6 * This code is based on arch/powerpc/kernel/rtas_pci.c:
7 * Copyright (C) 2001 Dave Engebretsen, IBM Corporation
8 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include <linux/kernel.h>
28 #include <linux/threads.h>
29 #include <linux/pci.h>
30 #include <linux/string.h>
31 #include <linux/init.h>
32 #include <linux/bootmem.h>
33 #include <linux/pci_regs.h>
35 #include <linux/of_device.h>
40 #include <asm/pci-bridge.h>
41 #include <asm/ppc-pci.h>
43 #include "io-workarounds.h"
44 #include "celleb_pci.h"
46 #define MAX_PCI_DEVICES 32
47 #define MAX_PCI_FUNCTIONS 8
48 #define MAX_PCI_BASE_ADDRS 3 /* use 64 bit address */
50 /* definition for fake pci configuration area for GbE, .... ,and etc. */
52 struct celleb_pci_resource
{
53 struct resource r
[MAX_PCI_BASE_ADDRS
];
56 struct celleb_pci_private
{
57 unsigned char *fake_config
[MAX_PCI_DEVICES
][MAX_PCI_FUNCTIONS
];
58 struct celleb_pci_resource
*res
[MAX_PCI_DEVICES
][MAX_PCI_FUNCTIONS
];
61 static inline u8
celleb_fake_config_readb(void *addr
)
67 static inline u16
celleb_fake_config_readw(void *addr
)
70 return le16_to_cpu(*p
);
73 static inline u32
celleb_fake_config_readl(void *addr
)
76 return le32_to_cpu(*p
);
79 static inline void celleb_fake_config_writeb(u32 val
, void *addr
)
85 static inline void celleb_fake_config_writew(u32 val
, void *addr
)
89 val16
= cpu_to_le16(val
);
93 static inline void celleb_fake_config_writel(u32 val
, void *addr
)
97 val32
= cpu_to_le32(val
);
101 static unsigned char *get_fake_config_start(struct pci_controller
*hose
,
104 struct celleb_pci_private
*private = hose
->private_data
;
109 return private->fake_config
[devno
][fn
];
112 static struct celleb_pci_resource
*get_resource_start(
113 struct pci_controller
*hose
,
116 struct celleb_pci_private
*private = hose
->private_data
;
121 return private->res
[devno
][fn
];
125 static void celleb_config_read_fake(unsigned char *config
, int where
,
128 char *p
= config
+ where
;
132 *val
= celleb_fake_config_readb(p
);
135 *val
= celleb_fake_config_readw(p
);
138 *val
= celleb_fake_config_readl(p
);
143 static void celleb_config_write_fake(unsigned char *config
, int where
,
146 char *p
= config
+ where
;
150 celleb_fake_config_writeb(val
, p
);
153 celleb_fake_config_writew(val
, p
);
156 celleb_fake_config_writel(val
, p
);
161 static int celleb_fake_pci_read_config(struct pci_bus
*bus
,
162 unsigned int devfn
, int where
, int size
, u32
*val
)
165 struct device_node
*node
;
166 struct pci_controller
*hose
;
167 unsigned int devno
= devfn
>> 3;
168 unsigned int fn
= devfn
& 0x7;
170 /* allignment check */
171 BUG_ON(where
% size
);
173 pr_debug(" fake read: bus=0x%x, ", bus
->number
);
174 node
= (struct device_node
*)bus
->sysdata
;
175 hose
= pci_find_hose_for_OF_device(node
);
176 config
= get_fake_config_start(hose
, devno
, fn
);
178 pr_debug("devno=0x%x, where=0x%x, size=0x%x, ", devno
, where
, size
);
180 pr_debug("failed\n");
181 return PCIBIOS_DEVICE_NOT_FOUND
;
184 celleb_config_read_fake(config
, where
, size
, val
);
185 pr_debug("val=0x%x\n", *val
);
187 return PCIBIOS_SUCCESSFUL
;
191 static int celleb_fake_pci_write_config(struct pci_bus
*bus
,
192 unsigned int devfn
, int where
, int size
, u32 val
)
195 struct device_node
*node
;
196 struct pci_controller
*hose
;
197 struct celleb_pci_resource
*res
;
198 unsigned int devno
= devfn
>> 3;
199 unsigned int fn
= devfn
& 0x7;
201 /* allignment check */
202 BUG_ON(where
% size
);
204 node
= (struct device_node
*)bus
->sysdata
;
205 hose
= pci_find_hose_for_OF_device(node
);
206 config
= get_fake_config_start(hose
, devno
, fn
);
209 return PCIBIOS_DEVICE_NOT_FOUND
;
212 int i
= (where
- PCI_BASE_ADDRESS_0
) >> 3;
215 case PCI_BASE_ADDRESS_0
:
216 case PCI_BASE_ADDRESS_2
:
218 return PCIBIOS_DEVICE_NOT_FOUND
;
219 res
= get_resource_start(hose
, devno
, fn
);
221 return PCIBIOS_DEVICE_NOT_FOUND
;
222 celleb_config_write_fake(config
, where
, size
,
223 (res
->r
[i
].end
- res
->r
[i
].start
));
224 return PCIBIOS_SUCCESSFUL
;
225 case PCI_BASE_ADDRESS_1
:
226 case PCI_BASE_ADDRESS_3
:
227 case PCI_BASE_ADDRESS_4
:
228 case PCI_BASE_ADDRESS_5
:
235 celleb_config_write_fake(config
, where
, size
, val
);
236 pr_debug(" fake write: where=%x, size=%d, val=%x\n",
239 return PCIBIOS_SUCCESSFUL
;
242 static struct pci_ops celleb_fake_pci_ops
= {
243 .read
= celleb_fake_pci_read_config
,
244 .write
= celleb_fake_pci_write_config
,
247 static inline void celleb_setup_pci_base_addrs(struct pci_controller
*hose
,
248 unsigned int devno
, unsigned int fn
,
249 unsigned int num_base_addr
)
252 unsigned char *config
;
253 struct celleb_pci_resource
*res
;
255 config
= get_fake_config_start(hose
, devno
, fn
);
256 res
= get_resource_start(hose
, devno
, fn
);
261 switch (num_base_addr
) {
263 val
= (res
->r
[2].start
& 0xfffffff0)
264 | PCI_BASE_ADDRESS_MEM_TYPE_64
;
265 celleb_config_write_fake(config
, PCI_BASE_ADDRESS_4
, 4, val
);
266 val
= res
->r
[2].start
>> 32;
267 celleb_config_write_fake(config
, PCI_BASE_ADDRESS_5
, 4, val
);
270 val
= (res
->r
[1].start
& 0xfffffff0)
271 | PCI_BASE_ADDRESS_MEM_TYPE_64
;
272 celleb_config_write_fake(config
, PCI_BASE_ADDRESS_2
, 4, val
);
273 val
= res
->r
[1].start
>> 32;
274 celleb_config_write_fake(config
, PCI_BASE_ADDRESS_3
, 4, val
);
277 val
= (res
->r
[0].start
& 0xfffffff0)
278 | PCI_BASE_ADDRESS_MEM_TYPE_64
;
279 celleb_config_write_fake(config
, PCI_BASE_ADDRESS_0
, 4, val
);
280 val
= res
->r
[0].start
>> 32;
281 celleb_config_write_fake(config
, PCI_BASE_ADDRESS_1
, 4, val
);
285 val
= PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
;
286 celleb_config_write_fake(config
, PCI_COMMAND
, 2, val
);
289 static int __init
celleb_setup_fake_pci_device(struct device_node
*node
,
290 struct pci_controller
*hose
)
293 int num_base_addr
= 0;
295 const u32
*wi0
, *wi1
, *wi2
, *wi3
, *wi4
;
296 unsigned int devno
, fn
;
297 struct celleb_pci_private
*private = hose
->private_data
;
298 unsigned char **config
= NULL
;
299 struct celleb_pci_resource
**res
= NULL
;
301 const unsigned long *li
;
304 if (private == NULL
) {
305 printk(KERN_ERR
"PCI: "
306 "memory space for pci controller is not assigned\n");
310 name
= of_get_property(node
, "model", &rlen
);
312 printk(KERN_ERR
"PCI: model property not found.\n");
316 wi4
= of_get_property(node
, "reg", &rlen
);
320 devno
= ((wi4
[0] >> 8) & 0xff) >> 3;
321 fn
= (wi4
[0] >> 8) & 0x7;
323 pr_debug("PCI: celleb_setup_fake_pci() %s devno=%x fn=%x\n", name
,
327 config
= &private->fake_config
[devno
][fn
];
328 *config
= alloc_maybe_bootmem(size
, GFP_KERNEL
);
329 if (*config
== NULL
) {
330 printk(KERN_ERR
"PCI: "
331 "not enough memory for fake configuration space\n");
334 pr_debug("PCI: fake config area assigned 0x%016lx\n",
335 (unsigned long)*config
);
337 size
= sizeof(struct celleb_pci_resource
);
338 res
= &private->res
[devno
][fn
];
339 *res
= alloc_maybe_bootmem(size
, GFP_KERNEL
);
342 "PCI: not enough memory for resource data space\n");
345 pr_debug("PCI: res assigned 0x%016lx\n", (unsigned long)*res
);
347 wi0
= of_get_property(node
, "device-id", NULL
);
348 wi1
= of_get_property(node
, "vendor-id", NULL
);
349 wi2
= of_get_property(node
, "class-code", NULL
);
350 wi3
= of_get_property(node
, "revision-id", NULL
);
351 if (!wi0
|| !wi1
|| !wi2
|| !wi3
) {
352 printk(KERN_ERR
"PCI: Missing device tree properties.\n");
356 celleb_config_write_fake(*config
, PCI_DEVICE_ID
, 2, wi0
[0] & 0xffff);
357 celleb_config_write_fake(*config
, PCI_VENDOR_ID
, 2, wi1
[0] & 0xffff);
358 pr_debug("class-code = 0x%08x\n", wi2
[0]);
360 celleb_config_write_fake(*config
, PCI_CLASS_PROG
, 1, wi2
[0] & 0xff);
361 celleb_config_write_fake(*config
, PCI_CLASS_DEVICE
, 2,
362 (wi2
[0] >> 8) & 0xffff);
363 celleb_config_write_fake(*config
, PCI_REVISION_ID
, 1, wi3
[0]);
365 while (num_base_addr
< MAX_PCI_BASE_ADDRS
) {
366 result
= of_address_to_resource(node
,
367 num_base_addr
, &(*res
)->r
[num_base_addr
]);
373 celleb_setup_pci_base_addrs(hose
, devno
, fn
, num_base_addr
);
375 li
= of_get_property(node
, "interrupts", &rlen
);
377 printk(KERN_ERR
"PCI: interrupts not found.\n");
381 celleb_config_write_fake(*config
, PCI_INTERRUPT_PIN
, 1, 1);
382 celleb_config_write_fake(*config
, PCI_INTERRUPT_LINE
, 1, val
);
385 pr_debug("PCI: %s irq=%ld\n", name
, li
[0]);
386 for (i
= 0; i
< 6; i
++) {
387 celleb_config_read_fake(*config
,
388 PCI_BASE_ADDRESS_0
+ 0x4 * i
, 4,
390 pr_debug("PCI: %s fn=%d base_address_%d=0x%x\n",
395 celleb_config_write_fake(*config
, PCI_HEADER_TYPE
, 1,
396 PCI_HEADER_TYPE_NORMAL
);
402 if (config
&& *config
)
408 if (config
&& *config
) {
410 free_bootmem((unsigned long)(*config
), size
);
413 size
= sizeof(struct celleb_pci_resource
);
414 free_bootmem((unsigned long)(*res
), size
);
421 static int __init
phb_set_bus_ranges(struct device_node
*dev
,
422 struct pci_controller
*phb
)
424 const int *bus_range
;
427 bus_range
= of_get_property(dev
, "bus-range", &len
);
428 if (bus_range
== NULL
|| len
< 2 * sizeof(int))
431 phb
->first_busno
= bus_range
[0];
432 phb
->last_busno
= bus_range
[1];
437 static void __init
celleb_alloc_private_mem(struct pci_controller
*hose
)
440 alloc_maybe_bootmem(sizeof(struct celleb_pci_private
),
444 static int __init
celleb_setup_fake_pci(struct device_node
*dev
,
445 struct pci_controller
*phb
)
447 struct device_node
*node
;
449 phb
->ops
= &celleb_fake_pci_ops
;
450 celleb_alloc_private_mem(phb
);
452 for (node
= of_get_next_child(dev
, NULL
);
453 node
!= NULL
; node
= of_get_next_child(dev
, node
))
454 celleb_setup_fake_pci_device(node
, phb
);
459 static struct celleb_phb_spec celleb_fake_pci_spec __initdata
= {
460 .setup
= celleb_setup_fake_pci
,
463 static struct of_device_id celleb_phb_match
[] __initdata
= {
465 .name
= "pci-pseudo",
466 .data
= &celleb_fake_pci_spec
,
469 .data
= &celleb_epci_spec
,
472 .data
= &celleb_pciex_spec
,
477 static int __init
celleb_io_workaround_init(struct pci_controller
*phb
,
478 struct celleb_phb_spec
*phb_spec
)
481 iowa_register_bus(phb
, phb_spec
->ops
, phb_spec
->iowa_init
,
482 phb_spec
->iowa_data
);
483 io_workaround_init();
489 int __init
celleb_setup_phb(struct pci_controller
*phb
)
491 struct device_node
*dev
= phb
->dn
;
492 const struct of_device_id
*match
;
493 struct celleb_phb_spec
*phb_spec
;
496 match
= of_match_node(celleb_phb_match
, dev
);
500 phb_set_bus_ranges(dev
, phb
);
503 phb_spec
= match
->data
;
504 rc
= (*phb_spec
->setup
)(dev
, phb
);
508 return celleb_io_workaround_init(phb
, phb_spec
);
511 int celleb_pci_probe_mode(struct pci_bus
*bus
)
513 return PCI_PROBE_DEVTREE
;