atheros: ar2315-pci: remove odd locking in PCI config space access function
[openwrt.git] / target / linux / atheros / patches-3.14 / 105-ar2315_pci.patch
1 --- a/arch/mips/ar231x/Makefile
2 +++ b/arch/mips/ar231x/Makefile
3 @@ -14,3 +14,4 @@ obj-$(CONFIG_EARLY_PRINTK) += early_prin
4  
5  obj-$(CONFIG_ATHEROS_AR5312) += ar5312.o
6  obj-$(CONFIG_ATHEROS_AR2315) += ar2315.o
7 +obj-$(CONFIG_ATHEROS_AR2315_PCI) += pci.o
8 --- /dev/null
9 +++ b/arch/mips/ar231x/pci.c
10 @@ -0,0 +1,229 @@
11 +/*
12 + * This program is free software; you can redistribute it and/or
13 + * modify it under the terms of the GNU General Public License
14 + * as published by the Free Software Foundation; either version 2
15 + * of the License, or (at your option) any later version.
16 + *
17 + * This program is distributed in the hope that it will be useful,
18 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 + * GNU General Public License for more details.
21 + *
22 + * You should have received a copy of the GNU General Public License
23 + * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 + */
25 +
26 +#include <linux/types.h>
27 +#include <linux/pci.h>
28 +#include <linux/kernel.h>
29 +#include <linux/init.h>
30 +#include <linux/mm.h>
31 +#include <linux/delay.h>
32 +#include <linux/irq.h>
33 +#include <linux/io.h>
34 +#include <asm/paccess.h>
35 +#include <ar231x_platform.h>
36 +#include <ar231x.h>
37 +#include <ar2315_regs.h>
38 +#include "devices.h"
39 +
40 +#define AR2315_MEM_BASE    0x80800000UL
41 +#define AR2315_MEM_SIZE    0x00ffffffUL
42 +#define AR2315_IO_SIZE     0x00007fffUL
43 +
44 +static unsigned long configspace;
45 +
46 +static int config_access(int devfn, int where, int size, u32 *ptr, bool write)
47 +{
48 +       int func = PCI_FUNC(devfn);
49 +       int dev = PCI_SLOT(devfn);
50 +       u32 value = 0;
51 +       int err = 0;
52 +       u32 addr;
53 +
54 +       if (((dev != 0) && (dev != 3)) || (func > 2))
55 +               return PCIBIOS_DEVICE_NOT_FOUND;
56 +
57 +       /* Select Configuration access */
58 +       ar231x_mask_reg(AR2315_PCI_MISC_CONFIG, 0, AR2315_PCIMISC_CFG_SEL);
59 +       mb();
60 +
61 +       addr = (u32)configspace + (1 << (13 + dev)) + (func << 8) + where;
62 +       if (size == 1)
63 +               addr ^= 0x3;
64 +       else if (size == 2)
65 +               addr ^= 0x2;
66 +
67 +       if (write) {
68 +               value = *ptr;
69 +               if (size == 1)
70 +                       err = put_dbe(value, (u8 *)addr);
71 +               else if (size == 2)
72 +                       err = put_dbe(value, (u16 *)addr);
73 +               else if (size == 4)
74 +                       err = put_dbe(value, (u32 *)addr);
75 +       } else {
76 +               if (size == 1)
77 +                       err = get_dbe(value, (u8 *)addr);
78 +               else if (size == 2)
79 +                       err = get_dbe(value, (u16 *)addr);
80 +               else if (size == 4)
81 +                       err = get_dbe(value, (u32 *)addr);
82 +               if (err)
83 +                       *ptr = 0xffffffff;
84 +               else
85 +                       *ptr = value;
86 +       }
87 +
88 +       /* Select Memory access */
89 +       ar231x_mask_reg(AR2315_PCI_MISC_CONFIG, AR2315_PCIMISC_CFG_SEL, 0);
90 +
91 +       return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
92 +}
93 +
94 +static int ar231x_pci_read(struct pci_bus *bus, unsigned int devfn, int where,
95 +                          int size, u32 *value)
96 +{
97 +       return config_access(devfn, where, size, value, 0);
98 +}
99 +
100 +static int ar231x_pci_write(struct pci_bus *bus, unsigned int devfn, int where,
101 +                           int size, u32 value)
102 +{
103 +       return config_access(devfn, where, size, &value, 1);
104 +}
105 +
106 +static struct pci_ops ar231x_pci_ops = {
107 +       .read   = ar231x_pci_read,
108 +       .write  = ar231x_pci_write,
109 +};
110 +
111 +static struct resource ar231x_mem_resource = {
112 +       .name   = "AR2315 PCI MEM",
113 +       .start  = AR2315_MEM_BASE,
114 +       .end    = AR2315_MEM_BASE + AR2315_MEM_SIZE - AR2315_IO_SIZE - 1 +
115 +                 0x4000000,
116 +       .flags  = IORESOURCE_MEM,
117 +};
118 +
119 +static struct resource ar231x_io_resource = {
120 +       .name   = "AR2315 PCI I/O",
121 +       .start  = AR2315_MEM_BASE + AR2315_MEM_SIZE - AR2315_IO_SIZE,
122 +       .end    = AR2315_MEM_BASE + AR2315_MEM_SIZE - 1,
123 +       .flags  = IORESOURCE_IO,
124 +};
125 +
126 +static struct pci_controller ar231x_pci_controller = {
127 +       .pci_ops                = &ar231x_pci_ops,
128 +       .mem_resource   = &ar231x_mem_resource,
129 +       .io_resource    = &ar231x_io_resource,
130 +       .mem_offset     = 0x00000000UL,
131 +       .io_offset      = 0x00000000UL,
132 +};
133 +
134 +int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
135 +{
136 +       return AR2315_IRQ_LCBUS_PCI;
137 +}
138 +
139 +int pcibios_plat_dev_init(struct pci_dev *dev)
140 +{
141 +       pci_write_config_byte(dev, PCI_INTERRUPT_LINE, 5);
142 +       pci_write_config_word(dev, 0x40, 0);
143 +
144 +       /* Clear any pending Abort or external Interrupts
145 +        * and enable interrupt processing */
146 +       ar231x_mask_reg(AR2315_PCI_INTEN_REG, AR2315_PCI_INT_ENABLE, 0);
147 +       ar231x_write_reg(AR2315_PCI_INT_STATUS, (AR2315_PCI_ABORT_INT |
148 +                        AR2315_PCI_EXT_INT));
149 +       ar231x_write_reg(AR2315_PCI_INT_MASK, (AR2315_PCI_ABORT_INT |
150 +                        AR2315_PCI_EXT_INT));
151 +       ar231x_mask_reg(AR2315_PCI_INTEN_REG, 0, AR2315_PCI_INT_ENABLE);
152 +
153 +       return 0;
154 +}
155 +
156 +static void
157 +ar2315_pci_fixup(struct pci_dev *dev)
158 +{
159 +       unsigned int devfn = dev->devfn;
160 +
161 +       if (dev->bus->number != 0)
162 +               return;
163 +
164 +       /* Only fix up the PCI host settings */
165 +       if ((PCI_SLOT(devfn) != 3) || (PCI_FUNC(devfn) != 0))
166 +               return;
167 +
168 +       /* Fix up MBARs */
169 +       pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, HOST_PCI_MBAR0);
170 +       pci_write_config_dword(dev, PCI_BASE_ADDRESS_1, HOST_PCI_MBAR1);
171 +       pci_write_config_dword(dev, PCI_BASE_ADDRESS_2, HOST_PCI_MBAR2);
172 +       pci_write_config_dword(dev, PCI_COMMAND, PCI_COMMAND_MEMORY |
173 +                              PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL |
174 +                              PCI_COMMAND_INVALIDATE | PCI_COMMAND_PARITY |
175 +                              PCI_COMMAND_SERR | PCI_COMMAND_FAST_BACK);
176 +}
177 +DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, ar2315_pci_fixup);
178 +
179 +static int __init
180 +ar2315_pci_init(void)
181 +{
182 +       u32 reg;
183 +
184 +       if (ar231x_devtype != DEV_TYPE_AR2315)
185 +               return -ENODEV;
186 +
187 +       /* Remap PCI config space */
188 +       configspace = (unsigned long)ioremap_nocache(AR2315_PCIEXT,
189 +                                                    1 * 1024 * 1024);
190 +       ar231x_pci_controller.io_map_base =
191 +                       (unsigned long)ioremap_nocache(AR2315_MEM_BASE +
192 +                       AR2315_MEM_SIZE, AR2315_IO_SIZE);
193 +       set_io_port_base(ar231x_pci_controller.io_map_base); /* PCI I/O space*/
194 +
195 +       reg = ar231x_mask_reg(AR2315_RESET, 0, AR2315_RESET_PCIDMA);
196 +       msleep(20);
197 +
198 +       reg &= ~AR2315_RESET_PCIDMA;
199 +       ar231x_write_reg(AR2315_RESET, reg);
200 +       msleep(20);
201 +
202 +       ar231x_mask_reg(AR2315_ENDIAN_CTL, 0,
203 +                       AR2315_CONFIG_PCIAHB | AR2315_CONFIG_PCIAHB_BRIDGE);
204 +
205 +       ar231x_write_reg(AR2315_PCICLK, AR2315_PCICLK_PLLC_CLKM |
206 +                        (AR2315_PCICLK_IN_FREQ_DIV_6 << AR2315_PCICLK_DIV_S));
207 +       ar231x_mask_reg(AR2315_AHB_ARB_CTL, 0, AR2315_ARB_PCI);
208 +       ar231x_mask_reg(AR2315_IF_CTL, AR2315_IF_PCI_CLK_MASK | AR2315_IF_MASK,
209 +                       AR2315_IF_PCI | AR2315_IF_PCI_HOST |
210 +                       AR2315_IF_PCI_INTR | (AR2315_IF_PCI_CLK_OUTPUT_CLK <<
211 +                                             AR2315_IF_PCI_CLK_SHIFT));
212 +
213 +       /* Reset the PCI bus by setting bits 5-4 in PCI_MCFG */
214 +       ar231x_mask_reg(AR2315_PCI_MISC_CONFIG, AR2315_PCIMISC_RST_MODE,
215 +                       AR2315_PCIRST_LOW);
216 +       msleep(100);
217 +
218 +       /* Bring the PCI out of reset */
219 +       ar231x_mask_reg(AR2315_PCI_MISC_CONFIG, AR2315_PCIMISC_RST_MODE,
220 +                       AR2315_PCIRST_HIGH | AR2315_PCICACHE_DIS | 0x8);
221 +
222 +       ar231x_write_reg(AR2315_PCI_UNCACHE_CFG,
223 +                        0x1E | /* 1GB uncached */
224 +                        (1 << 5) | /* Enable uncached */
225 +                        (0x2 << 30) /* Base: 0x80000000 */);
226 +       ar231x_read_reg(AR2315_PCI_UNCACHE_CFG);
227 +
228 +       msleep(500);
229 +
230 +       /* dirty hack - anyone with a datasheet that knows the memory map ? */
231 +       ioport_resource.start = 0x10000000;
232 +       ioport_resource.end = 0xffffffff;
233 +
234 +       register_pci_controller(&ar231x_pci_controller);
235 +
236 +       return 0;
237 +}
238 +
239 +arch_initcall(ar2315_pci_init);
240 --- a/arch/mips/ar231x/Kconfig
241 +++ b/arch/mips/ar231x/Kconfig
242 @@ -7,3 +7,10 @@ config ATHEROS_AR2315
243         bool "Atheros 2315+ support"
244         depends on ATHEROS_AR231X
245         default y
246 +
247 +config ATHEROS_AR2315_PCI
248 +       bool "PCI support"
249 +       depends on ATHEROS_AR2315
250 +       select HW_HAS_PCI
251 +       select PCI
252 +       default y
253 --- a/arch/mips/ar231x/ar2315.c
254 +++ b/arch/mips/ar231x/ar2315.c
255 @@ -87,6 +87,28 @@ static void ar2315_misc_irq_handler(unsi
256                 do_IRQ(AR2315_MISC_IRQ_NONE);
257  }
258  
259 +#ifdef CONFIG_ATHEROS_AR2315_PCI
260 +static inline void pci_abort_irq(void)
261 +{
262 +       ar231x_write_reg(AR2315_PCI_INT_STATUS, AR2315_PCI_ABORT_INT);
263 +}
264 +
265 +static inline void pci_ack_irq(void)
266 +{
267 +       ar231x_write_reg(AR2315_PCI_INT_STATUS, AR2315_PCI_EXT_INT);
268 +}
269 +
270 +static void ar2315_pci_irq(int irq)
271 +{
272 +       if (ar231x_read_reg(AR2315_PCI_INT_STATUS) == AR2315_PCI_ABORT_INT)
273 +               pci_abort_irq();
274 +       else {
275 +               do_IRQ(irq);
276 +               pci_ack_irq();
277 +       }
278 +}
279 +#endif /* CONFIG_ATHEROS_AR2315_PCI */
280 +
281  /*
282   * Called when an interrupt is received, this function
283   * determines exactly which interrupt it was, and it
284 @@ -104,6 +126,10 @@ ar2315_irq_dispatch(void)
285                 do_IRQ(AR2315_IRQ_WLAN0_INTRS);
286         else if (pending & CAUSEF_IP4)
287                 do_IRQ(AR2315_IRQ_ENET0_INTRS);
288 +#ifdef CONFIG_ATHEROS_AR2315_PCI
289 +       else if (pending & CAUSEF_IP5)
290 +               ar2315_pci_irq(AR2315_IRQ_LCBUS_PCI);
291 +#endif
292         else if (pending & CAUSEF_IP2)
293                 do_IRQ(AR2315_IRQ_MISC_INTRS);
294         else if (pending & CAUSEF_IP7)