2011-11-17 14:25:09 +00:00
|
|
|
/*
|
|
|
|
* Atheros 724x PCI support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 René Bolldorf <xsecute@googlemail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/pci.h>
|
2012-03-14 10:36:05 +01:00
|
|
|
#include <asm/mach-ath79/ath79.h>
|
2012-03-14 10:29:23 +01:00
|
|
|
#include <asm/mach-ath79/pci.h>
|
2011-11-17 14:25:09 +00:00
|
|
|
|
2012-03-14 10:29:27 +01:00
|
|
|
#define AR724X_PCI_CFG_BASE 0x14000000
|
|
|
|
#define AR724X_PCI_CFG_SIZE 0x1000
|
2012-03-14 10:29:26 +01:00
|
|
|
#define AR724X_PCI_MEM_BASE 0x10000000
|
|
|
|
#define AR724X_PCI_MEM_SIZE 0x08000000
|
2011-11-17 14:25:09 +00:00
|
|
|
|
2012-03-14 10:36:05 +01:00
|
|
|
#define AR7240_BAR0_WAR_VALUE 0xffff
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
static DEFINE_SPINLOCK(ar724x_pci_lock);
|
2012-03-14 10:29:27 +01:00
|
|
|
static void __iomem *ar724x_pci_devcfg_base;
|
2011-11-17 14:25:09 +00:00
|
|
|
|
2012-03-14 10:36:05 +01:00
|
|
|
static u32 ar724x_pci_bar0_value;
|
|
|
|
static bool ar724x_pci_bar0_is_cached;
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where,
|
2011-11-17 14:25:09 +00:00
|
|
|
int size, uint32_t *value)
|
|
|
|
{
|
2012-03-14 10:36:04 +01:00
|
|
|
unsigned long flags;
|
2012-03-14 10:29:27 +01:00
|
|
|
void __iomem *base;
|
2012-03-14 10:36:04 +01:00
|
|
|
u32 data;
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
if (devfn)
|
|
|
|
return PCIBIOS_DEVICE_NOT_FOUND;
|
|
|
|
|
2012-03-14 10:29:27 +01:00
|
|
|
base = ar724x_pci_devcfg_base;
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
spin_lock_irqsave(&ar724x_pci_lock, flags);
|
2012-03-14 10:36:04 +01:00
|
|
|
data = __raw_readl(base + (where & ~3));
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
2012-03-14 10:36:04 +01:00
|
|
|
if (where & 1)
|
|
|
|
data >>= 8;
|
|
|
|
if (where & 2)
|
|
|
|
data >>= 16;
|
|
|
|
data &= 0xff;
|
2011-11-17 14:25:09 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2012-03-14 10:36:04 +01:00
|
|
|
if (where & 2)
|
|
|
|
data >>= 16;
|
|
|
|
data &= 0xffff;
|
2011-11-17 14:25:09 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
break;
|
|
|
|
default:
|
2012-03-14 10:29:26 +01:00
|
|
|
spin_unlock_irqrestore(&ar724x_pci_lock, flags);
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
return PCIBIOS_BAD_REGISTER_NUMBER;
|
|
|
|
}
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
spin_unlock_irqrestore(&ar724x_pci_lock, flags);
|
2012-03-14 10:36:05 +01:00
|
|
|
|
|
|
|
if (where == PCI_BASE_ADDRESS_0 && size == 4 &&
|
|
|
|
ar724x_pci_bar0_is_cached) {
|
|
|
|
/* use the cached value */
|
|
|
|
*value = ar724x_pci_bar0_value;
|
|
|
|
} else {
|
|
|
|
*value = data;
|
|
|
|
}
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
return PCIBIOS_SUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
static int ar724x_pci_write(struct pci_bus *bus, unsigned int devfn, int where,
|
2011-11-17 14:25:09 +00:00
|
|
|
int size, uint32_t value)
|
|
|
|
{
|
2012-03-14 10:36:04 +01:00
|
|
|
unsigned long flags;
|
2012-03-14 10:29:27 +01:00
|
|
|
void __iomem *base;
|
2012-03-14 10:36:04 +01:00
|
|
|
u32 data;
|
|
|
|
int s;
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
if (devfn)
|
|
|
|
return PCIBIOS_DEVICE_NOT_FOUND;
|
|
|
|
|
2012-03-14 10:36:05 +01:00
|
|
|
if (soc_is_ar7240() && where == PCI_BASE_ADDRESS_0 && size == 4) {
|
|
|
|
if (value != 0xffffffff) {
|
|
|
|
/*
|
|
|
|
* WAR for a hw issue. If the BAR0 register of the
|
|
|
|
* device is set to the proper base address, the
|
|
|
|
* memory space of the device is not accessible.
|
|
|
|
*
|
|
|
|
* Cache the intended value so it can be read back,
|
|
|
|
* and write a SoC specific constant value to the
|
|
|
|
* BAR0 register in order to make the device memory
|
|
|
|
* accessible.
|
|
|
|
*/
|
|
|
|
ar724x_pci_bar0_is_cached = true;
|
|
|
|
ar724x_pci_bar0_value = value;
|
|
|
|
|
|
|
|
value = AR7240_BAR0_WAR_VALUE;
|
|
|
|
} else {
|
|
|
|
ar724x_pci_bar0_is_cached = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-14 10:29:27 +01:00
|
|
|
base = ar724x_pci_devcfg_base;
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
spin_lock_irqsave(&ar724x_pci_lock, flags);
|
2012-03-14 10:36:04 +01:00
|
|
|
data = __raw_readl(base + (where & ~3));
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
2012-03-14 10:36:04 +01:00
|
|
|
s = ((where & 3) * 8);
|
|
|
|
data &= ~(0xff << s);
|
|
|
|
data |= ((value & 0xff) << s);
|
2011-11-17 14:25:09 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2012-03-14 10:36:04 +01:00
|
|
|
s = ((where & 2) * 8);
|
|
|
|
data &= ~(0xffff << s);
|
|
|
|
data |= ((value & 0xffff) << s);
|
2011-11-17 14:25:09 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2012-03-14 10:36:04 +01:00
|
|
|
data = value;
|
2011-11-17 14:25:09 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-03-14 10:29:26 +01:00
|
|
|
spin_unlock_irqrestore(&ar724x_pci_lock, flags);
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
return PCIBIOS_BAD_REGISTER_NUMBER;
|
|
|
|
}
|
|
|
|
|
2012-03-14 10:36:04 +01:00
|
|
|
__raw_writel(data, base + (where & ~3));
|
|
|
|
/* flush write */
|
|
|
|
__raw_readl(base + (where & ~3));
|
2012-03-14 10:29:26 +01:00
|
|
|
spin_unlock_irqrestore(&ar724x_pci_lock, flags);
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
return PCIBIOS_SUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
static struct pci_ops ar724x_pci_ops = {
|
|
|
|
.read = ar724x_pci_read,
|
|
|
|
.write = ar724x_pci_write,
|
2011-11-17 14:25:09 +00:00
|
|
|
};
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
static struct resource ar724x_io_resource = {
|
2011-11-17 14:25:09 +00:00
|
|
|
.name = "PCI IO space",
|
|
|
|
.start = 0,
|
|
|
|
.end = 0,
|
|
|
|
.flags = IORESOURCE_IO,
|
|
|
|
};
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
static struct resource ar724x_mem_resource = {
|
2011-11-17 14:25:09 +00:00
|
|
|
.name = "PCI memory space",
|
2012-03-14 10:29:26 +01:00
|
|
|
.start = AR724X_PCI_MEM_BASE,
|
|
|
|
.end = AR724X_PCI_MEM_BASE + AR724X_PCI_MEM_SIZE - 1,
|
2011-11-17 14:25:09 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
};
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
static struct pci_controller ar724x_pci_controller = {
|
|
|
|
.pci_ops = &ar724x_pci_ops,
|
|
|
|
.io_resource = &ar724x_io_resource,
|
|
|
|
.mem_resource = &ar724x_mem_resource,
|
2011-11-17 14:25:09 +00:00
|
|
|
};
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
int __init ar724x_pcibios_init(void)
|
2011-11-17 14:25:09 +00:00
|
|
|
{
|
2012-03-14 10:29:27 +01:00
|
|
|
ar724x_pci_devcfg_base = ioremap(AR724X_PCI_CFG_BASE,
|
|
|
|
AR724X_PCI_CFG_SIZE);
|
|
|
|
if (ar724x_pci_devcfg_base == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2012-03-14 10:29:26 +01:00
|
|
|
register_pci_controller(&ar724x_pci_controller);
|
2011-11-17 14:25:09 +00:00
|
|
|
|
|
|
|
return PCIBIOS_SUCCESSFUL;
|
|
|
|
}
|