Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-ixp2000/pci.c |
| 3 | * |
| 4 | * PCI routines for IXDP2400/IXDP2800 boards |
| 5 | * |
| 6 | * Original Author: Naeem Afzal <naeem.m.afzal@intel.com> |
| 7 | * Maintained by: Deepak Saxena <dsaxena@plexity.net> |
| 8 | * |
| 9 | * Copyright 2002 Intel Corp. |
| 10 | * Copyright (C) 2003-2004 MontaVista Software, Inc. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License as published by the |
| 14 | * Free Software Foundation; either version 2 of the License, or (at your |
| 15 | * option) any later version. |
| 16 | */ |
| 17 | |
| 18 | #include <linux/sched.h> |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/pci.h> |
| 21 | #include <linux/interrupt.h> |
| 22 | #include <linux/mm.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/ioport.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/delay.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 26 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/irq.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 29 | #include <mach/hardware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | #include <asm/mach/pci.h> |
| 32 | |
Lennert Buytenhek | 2024c39 | 2006-12-01 16:02:40 +0100 | [diff] [blame] | 33 | static volatile int pci_master_aborts = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | static int clear_master_aborts(void); |
| 36 | |
Lennert Buytenhek | 8443b16 | 2005-04-29 21:58:15 +0100 | [diff] [blame] | 37 | u32 * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | ixp2000_pci_config_addr(unsigned int bus_nr, unsigned int devfn, int where) |
| 39 | { |
| 40 | u32 *paddress; |
| 41 | |
| 42 | if (PCI_SLOT(devfn) > 7) |
| 43 | return 0; |
| 44 | |
| 45 | /* Must be dword aligned */ |
| 46 | where &= ~3; |
| 47 | |
| 48 | /* |
| 49 | * For top bus, generate type 0, else type 1 |
| 50 | */ |
| 51 | if (!bus_nr) { |
| 52 | /* only bits[23:16] are used for IDSEL */ |
| 53 | paddress = (u32 *) (IXP2000_PCI_CFG0_VIRT_BASE |
| 54 | | (1 << (PCI_SLOT(devfn) + 16)) |
| 55 | | (PCI_FUNC(devfn) << 8) | where); |
| 56 | } else { |
| 57 | paddress = (u32 *) (IXP2000_PCI_CFG1_VIRT_BASE |
| 58 | | (bus_nr << 16) |
| 59 | | (PCI_SLOT(devfn) << 11) |
| 60 | | (PCI_FUNC(devfn) << 8) | where); |
| 61 | } |
| 62 | |
| 63 | return paddress; |
| 64 | } |
| 65 | |
| 66 | /* |
| 67 | * Mask table, bits to mask for quantity of size 1, 2 or 4 bytes. |
| 68 | * 0 and 3 are not valid indexes... |
| 69 | */ |
| 70 | static u32 bytemask[] = { |
| 71 | /*0*/ 0, |
| 72 | /*1*/ 0xff, |
| 73 | /*2*/ 0xffff, |
| 74 | /*3*/ 0, |
| 75 | /*4*/ 0xffffffff, |
| 76 | }; |
| 77 | |
| 78 | |
| 79 | int ixp2000_pci_read_config(struct pci_bus *bus, unsigned int devfn, int where, |
| 80 | int size, u32 *value) |
| 81 | { |
| 82 | u32 n; |
| 83 | u32 *addr; |
| 84 | |
| 85 | n = where % 4; |
| 86 | |
| 87 | addr = ixp2000_pci_config_addr(bus->number, devfn, where); |
| 88 | if (!addr) |
| 89 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 90 | |
| 91 | pci_master_aborts = 0; |
| 92 | *value = (*addr >> (8*n)) & bytemask[size]; |
| 93 | if (pci_master_aborts) { |
| 94 | pci_master_aborts = 0; |
| 95 | *value = 0xffffffff; |
| 96 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 97 | } |
| 98 | |
| 99 | return PCIBIOS_SUCCESSFUL; |
| 100 | } |
| 101 | |
| 102 | /* |
Simon Arlott | 6cbdc8c | 2007-05-11 20:40:30 +0100 | [diff] [blame] | 103 | * We don't do error checks by calling clear_master_aborts() b/c the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | * assumption is that the caller did a read first to make sure a device |
| 105 | * exists. |
| 106 | */ |
| 107 | int ixp2000_pci_write_config(struct pci_bus *bus, unsigned int devfn, int where, |
| 108 | int size, u32 value) |
| 109 | { |
| 110 | u32 mask; |
| 111 | u32 *addr; |
| 112 | u32 temp; |
| 113 | |
| 114 | mask = ~(bytemask[size] << ((where % 0x4) * 8)); |
| 115 | addr = ixp2000_pci_config_addr(bus->number, devfn, where); |
| 116 | if (!addr) |
| 117 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 118 | temp = (u32) (value) << ((where % 0x4) * 8); |
| 119 | *addr = (*addr & mask) | temp; |
| 120 | |
| 121 | clear_master_aborts(); |
| 122 | |
| 123 | return PCIBIOS_SUCCESSFUL; |
| 124 | } |
| 125 | |
| 126 | |
Russell King | c23bfc3 | 2012-03-10 12:49:16 +0000 | [diff] [blame] | 127 | struct pci_ops ixp2000_pci_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | .read = ixp2000_pci_read_config, |
| 129 | .write = ixp2000_pci_write_config |
| 130 | }; |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
| 133 | int ixp2000_pci_abort_handler(unsigned long addr, unsigned int fsr, struct pt_regs *regs) |
| 134 | { |
| 135 | |
| 136 | volatile u32 temp; |
| 137 | unsigned long flags; |
| 138 | |
| 139 | pci_master_aborts = 1; |
| 140 | |
| 141 | local_irq_save(flags); |
| 142 | temp = *(IXP2000_PCI_CONTROL); |
| 143 | if (temp & ((1 << 8) | (1 << 5))) { |
Lennert Buytenhek | e9b72e4 | 2005-11-01 19:44:26 +0000 | [diff] [blame] | 144 | ixp2000_reg_wrb(IXP2000_PCI_CONTROL, temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | temp = *(IXP2000_PCI_CMDSTAT); |
| 148 | if (temp & (1 << 29)) { |
| 149 | while (temp & (1 << 29)) { |
| 150 | ixp2000_reg_write(IXP2000_PCI_CMDSTAT, temp); |
| 151 | temp = *(IXP2000_PCI_CMDSTAT); |
| 152 | } |
| 153 | } |
| 154 | local_irq_restore(flags); |
| 155 | |
| 156 | /* |
| 157 | * If it was an imprecise abort, then we need to correct the |
| 158 | * return address to be _after_ the instruction. |
| 159 | */ |
| 160 | if (fsr & (1 << 10)) |
| 161 | regs->ARM_pc += 4; |
| 162 | |
| 163 | return 0; |
| 164 | } |
| 165 | |
| 166 | int |
| 167 | clear_master_aborts(void) |
| 168 | { |
| 169 | volatile u32 temp; |
| 170 | unsigned long flags; |
| 171 | |
| 172 | local_irq_save(flags); |
| 173 | temp = *(IXP2000_PCI_CONTROL); |
Lennert Buytenhek | e9b72e4 | 2005-11-01 19:44:26 +0000 | [diff] [blame] | 174 | if (temp & ((1 << 8) | (1 << 5))) { |
| 175 | ixp2000_reg_wrb(IXP2000_PCI_CONTROL, temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | temp = *(IXP2000_PCI_CMDSTAT); |
| 179 | if (temp & (1 << 29)) { |
| 180 | while (temp & (1 << 29)) { |
| 181 | ixp2000_reg_write(IXP2000_PCI_CMDSTAT, temp); |
| 182 | temp = *(IXP2000_PCI_CMDSTAT); |
| 183 | } |
| 184 | } |
| 185 | local_irq_restore(flags); |
| 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
| 190 | void __init |
| 191 | ixp2000_pci_preinit(void) |
| 192 | { |
Rob Herring | dc8d966 | 2011-06-29 10:59:45 -0500 | [diff] [blame] | 193 | pci_set_flags(0); |
| 194 | |
Rob Herring | c9d95fb | 2011-06-28 21:16:13 -0500 | [diff] [blame] | 195 | pcibios_min_io = 0; |
| 196 | pcibios_min_mem = 0; |
| 197 | |
Lennert Buytenhek | 321ab6a | 2005-06-25 19:30:04 +0100 | [diff] [blame] | 198 | #ifndef CONFIG_IXP2000_SUPPORT_BROKEN_PCI_IO |
| 199 | /* |
| 200 | * Configure the PCI unit to properly byteswap I/O transactions, |
| 201 | * and verify that it worked. |
| 202 | */ |
| 203 | ixp2000_reg_write(IXP2000_PCI_CONTROL, |
| 204 | (*IXP2000_PCI_CONTROL | PCI_CONTROL_IEE)); |
| 205 | |
| 206 | if ((*IXP2000_PCI_CONTROL & PCI_CONTROL_IEE) == 0) |
| 207 | panic("IXP2000: PCI I/O is broken on this ixp model, and " |
| 208 | "the needed workaround has not been configured in"); |
| 209 | #endif |
| 210 | |
Kirill A. Shutemov | 6338a6a | 2010-07-22 13:18:19 +0100 | [diff] [blame] | 211 | hook_fault_code(16+6, ixp2000_pci_abort_handler, SIGBUS, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | "PCI config cycle to non-existent device"); |
| 213 | } |
| 214 | |
| 215 | |
| 216 | /* |
| 217 | * IXP2000 systems often have large resource requirements, so we just |
| 218 | * use our own resource space. |
| 219 | */ |
| 220 | static struct resource ixp2000_pci_mem_space = { |
Lennert Buytenhek | ae36bf5 | 2005-04-29 21:58:15 +0100 | [diff] [blame] | 221 | .start = 0xe0000000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | .end = 0xffffffff, |
| 223 | .flags = IORESOURCE_MEM, |
| 224 | .name = "PCI Mem Space" |
| 225 | }; |
| 226 | |
| 227 | static struct resource ixp2000_pci_io_space = { |
Lennert Buytenhek | 458a83f | 2005-04-29 21:58:16 +0100 | [diff] [blame] | 228 | .start = 0x00010000, |
| 229 | .end = 0x0001ffff, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | .flags = IORESOURCE_IO, |
| 231 | .name = "PCI I/O Space" |
| 232 | }; |
| 233 | |
| 234 | int ixp2000_pci_setup(int nr, struct pci_sys_data *sys) |
| 235 | { |
| 236 | if (nr >= 1) |
| 237 | return 0; |
| 238 | |
Bjorn Helgaas | 9f786d03 | 2012-02-23 20:19:01 -0700 | [diff] [blame] | 239 | pci_add_resource_offset(&sys->resources, |
| 240 | &ixp2000_pci_io_space, sys->io_offset); |
| 241 | pci_add_resource_offset(&sys->resources, |
| 242 | &ixp2000_pci_mem_space, sys->mem_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
| 244 | return 1; |
| 245 | } |
| 246 | |