1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2010 John Crispin <john@phrozen.org>
7 #include <linux/types.h>
9 #include <linux/kernel.h>
10 #include <linux/delay.h>
12 #include <asm/addrspace.h>
13 #include <linux/vmalloc.h>
15 #include <lantiq_soc.h>
17 #include "pci-lantiq.h"
19 #define LTQ_PCI_CFG_BUSNUM_SHF 16
20 #define LTQ_PCI_CFG_DEVNUM_SHF 11
21 #define LTQ_PCI_CFG_FUNNUM_SHF 8
23 #define PCI_ACCESS_READ 0
24 #define PCI_ACCESS_WRITE 1
26 static int ltq_pci_config_access(unsigned char access_type, struct pci_bus *bus,
27 unsigned int devfn, unsigned int where, u32 *data)
29 unsigned long cfg_base;
33 /* we support slot from 0 to 15 dev_fn & 0x68 (AD29) is the
35 if ((bus->number != 0) || ((devfn & 0xf8) > 0x78)
36 || ((devfn & 0xf8) == 0) || ((devfn & 0xf8) == 0x68))
39 spin_lock_irqsave(&ebu_lock, flags);
41 cfg_base = (unsigned long) ltq_pci_mapped_cfg;
42 cfg_base |= (bus->number << LTQ_PCI_CFG_BUSNUM_SHF) | (devfn <<
43 LTQ_PCI_CFG_FUNNUM_SHF) | (where & ~0x3);
46 if (access_type == PCI_ACCESS_WRITE) {
47 ltq_w32(swab32(*data), ((u32 *)cfg_base));
49 *data = ltq_r32(((u32 *)(cfg_base)));
50 *data = swab32(*data);
54 /* clean possible Master abort */
55 cfg_base = (unsigned long) ltq_pci_mapped_cfg;
56 cfg_base |= (0x0 << LTQ_PCI_CFG_FUNNUM_SHF) + 4;
57 temp = ltq_r32(((u32 *)(cfg_base)));
59 cfg_base = (unsigned long) ltq_pci_mapped_cfg;
60 cfg_base |= (0x68 << LTQ_PCI_CFG_FUNNUM_SHF) + 4;
61 ltq_w32(temp, ((u32 *)cfg_base));
63 spin_unlock_irqrestore(&ebu_lock, flags);
65 if (((*data) == 0xffffffff) && (access_type == PCI_ACCESS_READ))
71 int ltq_pci_read_config_dword(struct pci_bus *bus, unsigned int devfn,
72 int where, int size, u32 *val)
76 if (ltq_pci_config_access(PCI_ACCESS_READ, bus, devfn, where, &data))
77 return PCIBIOS_DEVICE_NOT_FOUND;
80 *val = (data >> ((where & 3) << 3)) & 0xff;
82 *val = (data >> ((where & 3) << 3)) & 0xffff;
86 return PCIBIOS_SUCCESSFUL;
89 int ltq_pci_write_config_dword(struct pci_bus *bus, unsigned int devfn,
90 int where, int size, u32 val)
97 if (ltq_pci_config_access(PCI_ACCESS_READ, bus,
99 return PCIBIOS_DEVICE_NOT_FOUND;
102 data = (data & ~(0xff << ((where & 3) << 3))) |
103 (val << ((where & 3) << 3));
105 data = (data & ~(0xffff << ((where & 3) << 3))) |
106 (val << ((where & 3) << 3));
109 if (ltq_pci_config_access(PCI_ACCESS_WRITE, bus, devfn, where, &data))
110 return PCIBIOS_DEVICE_NOT_FOUND;
112 return PCIBIOS_SUCCESSFUL;