2 * Copyright (C) 2006, 2007 OpenWrt.org
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #include <linux/types.h>
20 #include <linux/pci.h>
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/irq.h>
24 #include <asm/ar7/vlynq.h>
26 #define VLYNQ_PCI_SLOTS 2
28 struct vlynq_reg_config
{
33 struct vlynq_pci_config
{
36 struct vlynq_mapping rx_mapping
[4];
42 struct vlynq_reg_config regs
[10];
45 struct vlynq_pci_private
{
50 struct vlynq_pci_config
*config
;
53 static struct vlynq_pci_config known_devices
[] = {
55 .chip_id
= 0x00000009, .name
= "TI TNETW1130",
57 { .size
= 0x22000, .offset
= 0xf0000000 },
58 { .size
= 0x40000, .offset
= 0xc0000000 },
59 { .size
= 0x0, .offset
= 0x0 },
60 { .size
= 0x0, .offset
= 0x0 },
62 .irq
= 0, .chip
= 0x9066104c,
63 .irq_type
= IRQ_TYPE_EDGE_RISING
,
64 .class = PCI_CLASS_NETWORK_OTHER
,
69 .value
= (0xd0000000 - PHYS_OFFSET
)
73 .value
= (0xd0000000 - PHYS_OFFSET
)
75 { .offset
= 0x740, .value
= 0 },
76 { .offset
= 0x744, .value
= 0x00010000 },
77 { .offset
= 0x764, .value
= 0x00010000 },
81 .chip_id
= 0x00000029, .name
= "TI TNETW1350",
83 { .size
= 0x100000, .offset
= 0x00300000 },
84 { .size
= 0x80000, .offset
= 0x00000000 },
85 { .size
= 0x0, .offset
= 0x0 },
86 { .size
= 0x0, .offset
= 0x0 },
88 .irq
= 0, .chip
= 0x9066104c,
89 .irq_type
= IRQ_TYPE_EDGE_RISING
,
90 .class = PCI_CLASS_NETWORK_OTHER
,
95 .value
= (0x60000000 - PHYS_OFFSET
)
99 .value
= (0x60000000 - PHYS_OFFSET
)
101 { .offset
= 0x740, .value
= 0 },
102 { .offset
= 0x744, .value
= 0x00010000 },
103 { .offset
= 0x764, .value
= 0x00010000 },
108 static struct vlynq_device
*slots
[VLYNQ_PCI_SLOTS
] = { NULL
, };
110 static struct resource vlynq_io_resource
= {
113 .name
= "pci IO space",
114 .flags
= IORESOURCE_IO
117 static struct resource vlynq_mem_resource
= {
120 .name
= "pci memory space",
121 .flags
= IORESOURCE_MEM
124 static inline u32
vlynq_get_mapped(struct vlynq_device
*dev
, int res
)
127 struct vlynq_pci_private
*priv
= dev
->priv
;
128 u32 ret
= dev
->mem_start
;
129 if (!priv
->config
->rx_mapping
[res
].size
) return 0;
130 for (i
= 0; i
< res
; i
++)
131 ret
+= priv
->config
->rx_mapping
[i
].size
;
136 static inline u32
vlynq_read(u32 val
, int size
) {
146 static int vlynq_config_read(struct pci_bus
*bus
, unsigned int devfn
,
147 int where
, int size
, u32
*val
)
149 struct vlynq_device
*dev
;
150 struct vlynq_pci_private
*priv
;
151 int resno
, slot
= PCI_SLOT(devfn
);
153 if ((size
== 2) && (where
& 1))
154 return PCIBIOS_BAD_REGISTER_NUMBER
;
155 else if ((size
== 4) && (where
& 3))
156 return PCIBIOS_BAD_REGISTER_NUMBER
;
158 if (slot
>= VLYNQ_PCI_SLOTS
)
159 return PCIBIOS_DEVICE_NOT_FOUND
;
163 if (!dev
|| (PCI_FUNC(devfn
) > 0))
164 return PCIBIOS_DEVICE_NOT_FOUND
;
170 *val
= vlynq_read(priv
->config
->chip
, size
);
173 *val
= priv
->config
->chip
& 0xffff;
175 *val
= priv
->command
;
177 /* *val = PCI_STATUS_CAP_LIST;*/
180 case PCI_CLASS_REVISION
:
181 *val
= priv
->config
->class;
183 case PCI_LATENCY_TIMER
:
184 *val
= priv
->latency
;
186 case PCI_HEADER_TYPE
:
187 *val
= PCI_HEADER_TYPE_NORMAL
;
189 case PCI_CACHE_LINE_SIZE
:
190 *val
= priv
->cache_line
;
192 case PCI_BASE_ADDRESS_0
:
193 case PCI_BASE_ADDRESS_1
:
194 case PCI_BASE_ADDRESS_2
:
195 case PCI_BASE_ADDRESS_3
:
196 resno
= (where
- PCI_BASE_ADDRESS_0
) >> 2;
197 if (priv
->sz_mask
& (1 << resno
)) {
198 priv
->sz_mask
&= ~(1 << resno
);
199 *val
= priv
->config
->rx_mapping
[resno
].size
;
201 *val
= vlynq_get_mapped(dev
, resno
);
204 case PCI_BASE_ADDRESS_4
:
205 case PCI_BASE_ADDRESS_5
:
206 case PCI_SUBSYSTEM_VENDOR_ID
:
207 case PCI_SUBSYSTEM_ID
:
208 case PCI_ROM_ADDRESS
:
209 case PCI_INTERRUPT_LINE
:
210 case PCI_CARDBUS_CIS
:
211 case PCI_CAPABILITY_LIST
:
214 case PCI_INTERRUPT_PIN
:
218 printk(KERN_NOTICE
"%s: Read of unknown register 0x%x "
219 "(size %d)\n", dev
->dev
.bus_id
, where
, size
);
220 return PCIBIOS_BAD_REGISTER_NUMBER
;
222 return PCIBIOS_SUCCESSFUL
;
225 static int vlynq_config_write(struct pci_bus
*bus
, unsigned int devfn
,
226 int where
, int size
, u32 val
)
228 struct vlynq_device
*dev
;
229 struct vlynq_pci_private
*priv
;
230 int resno
, slot
= PCI_SLOT(devfn
);
232 if ((size
== 2) && (where
& 1))
233 return PCIBIOS_BAD_REGISTER_NUMBER
;
234 else if ((size
== 4) && (where
& 3))
235 return PCIBIOS_BAD_REGISTER_NUMBER
;
237 if (slot
>= VLYNQ_PCI_SLOTS
)
238 return PCIBIOS_DEVICE_NOT_FOUND
;
242 if (!dev
|| (PCI_FUNC(devfn
) > 0))
243 return PCIBIOS_DEVICE_NOT_FOUND
;
251 case PCI_CLASS_REVISION
:
252 case PCI_HEADER_TYPE
:
253 case PCI_CACHE_LINE_SIZE
:
254 case PCI_SUBSYSTEM_VENDOR_ID
:
255 case PCI_SUBSYSTEM_ID
:
256 case PCI_INTERRUPT_LINE
:
257 case PCI_INTERRUPT_PIN
:
258 case PCI_CARDBUS_CIS
:
259 case PCI_CAPABILITY_LIST
:
260 return PCIBIOS_FUNC_NOT_SUPPORTED
;
263 case PCI_LATENCY_TIMER
:
266 case PCI_BASE_ADDRESS_0
:
267 case PCI_BASE_ADDRESS_1
:
268 case PCI_BASE_ADDRESS_2
:
269 case PCI_BASE_ADDRESS_3
:
270 if (val
== 0xffffffff) {
271 resno
= (where
- PCI_BASE_ADDRESS_0
) >> 2;
272 priv
->sz_mask
|= (1 << resno
);
275 case PCI_BASE_ADDRESS_4
:
276 case PCI_BASE_ADDRESS_5
:
277 case PCI_ROM_ADDRESS
:
280 printk(KERN_NOTICE
"%s: Write to unknown register 0x%x "
281 "(size %d) value=0x%x\n", dev
->dev
.bus_id
, where
, size
,
283 return PCIBIOS_BAD_REGISTER_NUMBER
;
285 return PCIBIOS_SUCCESSFUL
;
288 static struct pci_ops vlynq_pci_ops
= {
293 static struct pci_controller vlynq_controller
= {
294 .pci_ops
= &vlynq_pci_ops
,
295 .io_resource
= &vlynq_io_resource
,
296 .mem_resource
= &vlynq_mem_resource
,
299 static int vlynq_pci_probe(struct vlynq_device
*dev
)
303 struct vlynq_pci_private
*priv
;
304 struct vlynq_mapping mapping
[4] = { { 0, }, };
305 struct vlynq_pci_config
*config
= NULL
;
307 result
= vlynq_set_local_irq(dev
, 31);
311 result
= vlynq_set_remote_irq(dev
, 30);
315 dev
->divisor
= vlynq_ldiv4
;
316 result
= vlynq_device_enable(dev
);
320 chip_id
= vlynq_remote_id(dev
);
321 for (i
= 0; i
< ARRAY_SIZE(known_devices
); i
++)
322 if (chip_id
== known_devices
[i
].chip_id
)
323 config
= &known_devices
[i
];
326 printk(KERN_DEBUG
"vlynq-pci: skipping unknown device "
327 "%04x:%04x at %s\n", chip_id
>> 16,
328 chip_id
& 0xffff, dev
->dev
.bus_id
);
333 printk(KERN_NOTICE
"vlynq-pci: attaching device %s at %s\n",
334 config
->name
, dev
->dev
.bus_id
);
336 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
338 printk(KERN_ERR
"%s: failed to allocate private data\n",
345 priv
->cache_line
= 32;
346 priv
->config
= config
;
348 mapping
[0].offset
= ARCH_PFN_OFFSET
<< PAGE_SHIFT
;
349 mapping
[0].size
= 0x02000000;
350 vlynq_set_local_mapping(dev
, dev
->mem_start
, mapping
);
351 vlynq_set_remote_mapping(dev
, 0, config
->rx_mapping
);
353 set_irq_type(vlynq_virq_to_irq(dev
, config
->irq
), config
->irq_type
);
355 addr
= (u32
)ioremap_nocache(dev
->mem_start
, 0x10000);
357 printk(KERN_ERR
"%s: failed to remap io memory\n",
363 for (i
= 0; i
< config
->num_regs
; i
++)
364 iowrite32(config
->regs
[i
].value
,
365 (u32
*)(addr
+ config
->regs
[i
].offset
));
368 for (i
= 0; i
< VLYNQ_PCI_SLOTS
; i
++) {
378 vlynq_device_disable(dev
);
383 static int vlynq_pci_remove(struct vlynq_device
*dev
)
386 struct vlynq_pci_private
*priv
= dev
->priv
;
388 for (i
= 0; i
< VLYNQ_PCI_SLOTS
; i
++)
392 vlynq_device_disable(dev
);
398 static struct vlynq_driver vlynq_pci
= {
399 .name
= "PCI over VLYNQ emulation",
400 .probe
= vlynq_pci_probe
,
401 .remove
= vlynq_pci_remove
,
404 int vlynq_pci_init(void)
407 res
= vlynq_register_driver(&vlynq_pci
);
411 register_pci_controller(&vlynq_controller
);
416 int pcibios_map_irq(struct pci_dev
*pdev
, u8 slot
, u8 pin
)
418 struct vlynq_device
*dev
;
419 struct vlynq_pci_private
*priv
;
428 return vlynq_virq_to_irq(dev
, priv
->config
->irq
);
431 /* Do platform specific device initialization at pci_enable_device() time */
432 int pcibios_plat_dev_init(struct pci_dev
*dev
)