2011-11-17 07:25:09 -07: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 02:29:23 -07:00
|
|
|
#include <asm/mach-ath79/pci.h>
|
2011-11-17 07:25:09 -07:00
|
|
|
|
2012-03-14 02:29:27 -07:00
|
|
|
#define AR724X_PCI_CFG_BASE 0x14000000
|
|
|
|
#define AR724X_PCI_CFG_SIZE 0x1000
|
2012-03-14 02:29:26 -07:00
|
|
|
#define AR724X_PCI_MEM_BASE 0x10000000
|
|
|
|
#define AR724X_PCI_MEM_SIZE 0x08000000
|
2011-11-17 07:25:09 -07:00
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
static DEFINE_SPINLOCK(ar724x_pci_lock);
|
2012-03-14 02:29:27 -07:00
|
|
|
static void __iomem *ar724x_pci_devcfg_base;
|
2011-11-17 07:25:09 -07:00
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where,
|
2011-11-17 07:25:09 -07:00
|
|
|
int size, uint32_t *value)
|
|
|
|
{
|
|
|
|
unsigned long flags, addr, tval, mask;
|
2012-03-14 02:29:27 -07:00
|
|
|
void __iomem *base;
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
if (devfn)
|
|
|
|
return PCIBIOS_DEVICE_NOT_FOUND;
|
|
|
|
|
2012-03-14 02:29:27 -07:00
|
|
|
base = ar724x_pci_devcfg_base;
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
spin_lock_irqsave(&ar724x_pci_lock, flags);
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
|
|
|
addr = where & ~3;
|
|
|
|
mask = 0xff000000 >> ((where % 4) * 8);
|
2012-03-14 02:29:27 -07:00
|
|
|
tval = __raw_readl(base + addr);
|
2011-11-17 07:25:09 -07:00
|
|
|
tval = tval & ~mask;
|
|
|
|
*value = (tval >> ((4 - (where % 4))*8));
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
addr = where & ~3;
|
|
|
|
mask = 0xffff0000 >> ((where % 4)*8);
|
2012-03-14 02:29:27 -07:00
|
|
|
tval = __raw_readl(base + addr);
|
2011-11-17 07:25:09 -07:00
|
|
|
tval = tval & ~mask;
|
|
|
|
*value = (tval >> ((4 - (where % 4))*8));
|
|
|
|
break;
|
|
|
|
case 4:
|
2012-03-14 02:29:27 -07:00
|
|
|
*value = __raw_readl(base + where);
|
2011-11-17 07:25:09 -07:00
|
|
|
break;
|
|
|
|
default:
|
2012-03-14 02:29:26 -07:00
|
|
|
spin_unlock_irqrestore(&ar724x_pci_lock, flags);
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
return PCIBIOS_BAD_REGISTER_NUMBER;
|
|
|
|
}
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
spin_unlock_irqrestore(&ar724x_pci_lock, flags);
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
return PCIBIOS_SUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
static int ar724x_pci_write(struct pci_bus *bus, unsigned int devfn, int where,
|
2011-11-17 07:25:09 -07:00
|
|
|
int size, uint32_t value)
|
|
|
|
{
|
|
|
|
unsigned long flags, tval, addr, mask;
|
2012-03-14 02:29:27 -07:00
|
|
|
void __iomem *base;
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
if (devfn)
|
|
|
|
return PCIBIOS_DEVICE_NOT_FOUND;
|
|
|
|
|
2012-03-14 02:29:27 -07:00
|
|
|
base = ar724x_pci_devcfg_base;
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
spin_lock_irqsave(&ar724x_pci_lock, flags);
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
2012-03-14 02:29:27 -07:00
|
|
|
addr = where & ~3;
|
2011-11-17 07:25:09 -07:00
|
|
|
mask = 0xff000000 >> ((where % 4)*8);
|
2012-03-14 02:29:27 -07:00
|
|
|
tval = __raw_readl(base + addr);
|
2011-11-17 07:25:09 -07:00
|
|
|
tval = tval & ~mask;
|
|
|
|
tval |= (value << ((4 - (where % 4))*8)) & mask;
|
2012-03-14 02:29:27 -07:00
|
|
|
__raw_writel(tval, base + addr);
|
2011-11-17 07:25:09 -07:00
|
|
|
break;
|
|
|
|
case 2:
|
2012-03-14 02:29:27 -07:00
|
|
|
addr = where & ~3;
|
2011-11-17 07:25:09 -07:00
|
|
|
mask = 0xffff0000 >> ((where % 4)*8);
|
2012-03-14 02:29:27 -07:00
|
|
|
tval = __raw_readl(base + addr);
|
2011-11-17 07:25:09 -07:00
|
|
|
tval = tval & ~mask;
|
|
|
|
tval |= (value << ((4 - (where % 4))*8)) & mask;
|
2012-03-14 02:29:27 -07:00
|
|
|
__raw_writel(tval, base + addr);
|
2011-11-17 07:25:09 -07:00
|
|
|
break;
|
|
|
|
case 4:
|
2012-03-14 02:29:27 -07:00
|
|
|
__raw_writel(value, (base + where));
|
2011-11-17 07:25:09 -07:00
|
|
|
break;
|
|
|
|
default:
|
2012-03-14 02:29:26 -07:00
|
|
|
spin_unlock_irqrestore(&ar724x_pci_lock, flags);
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
return PCIBIOS_BAD_REGISTER_NUMBER;
|
|
|
|
}
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
spin_unlock_irqrestore(&ar724x_pci_lock, flags);
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
return PCIBIOS_SUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
static struct pci_ops ar724x_pci_ops = {
|
|
|
|
.read = ar724x_pci_read,
|
|
|
|
.write = ar724x_pci_write,
|
2011-11-17 07:25:09 -07:00
|
|
|
};
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
static struct resource ar724x_io_resource = {
|
2011-11-17 07:25:09 -07:00
|
|
|
.name = "PCI IO space",
|
|
|
|
.start = 0,
|
|
|
|
.end = 0,
|
|
|
|
.flags = IORESOURCE_IO,
|
|
|
|
};
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
static struct resource ar724x_mem_resource = {
|
2011-11-17 07:25:09 -07:00
|
|
|
.name = "PCI memory space",
|
2012-03-14 02:29:26 -07:00
|
|
|
.start = AR724X_PCI_MEM_BASE,
|
|
|
|
.end = AR724X_PCI_MEM_BASE + AR724X_PCI_MEM_SIZE - 1,
|
2011-11-17 07:25:09 -07:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
};
|
|
|
|
|
2012-03-14 02:29:26 -07: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 07:25:09 -07:00
|
|
|
};
|
|
|
|
|
2012-03-14 02:29:26 -07:00
|
|
|
int __init ar724x_pcibios_init(void)
|
2011-11-17 07:25:09 -07:00
|
|
|
{
|
2012-03-14 02:29:27 -07: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 02:29:26 -07:00
|
|
|
register_pci_controller(&ar724x_pci_controller);
|
2011-11-17 07:25:09 -07:00
|
|
|
|
|
|
|
return PCIBIOS_SUCCESSFUL;
|
|
|
|
}
|