Commit da591937 authored by Mike Rapoport's avatar Mike Rapoport Committed by Russell King

[ARM] 5280/1: pxa: prepare cm-x2xx.c and cm-x2xx-pci.[ch] for addition of CM-X255

- Change CM-X255 and CM-X270 common function prefix from cmx270 to cmx2xx
- Split cmx2xx_init to common and CM-X270-specific parts
- Use dynamic assignement for DM9000 resources and led GPIOs.
Signed-off-by: default avatarRuss Dill <russ.dill@gmail.com>
Signed-off-by: default avatarMike Rapoport <mike@compulab.co.il>
Acked-by: default avatarEric Miao <eric.miao@marvell.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 7d76e3f1
/* /*
* linux/arch/arm/mach-pxa/cm-x270-pci.c * linux/arch/arm/mach-pxa/cm-x2xx-pci.c
* *
* PCI bios-type initialisation for PCI machines * PCI bios-type initialisation for PCI machines
* *
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include <asm/hardware/it8152.h> #include <asm/hardware/it8152.h>
unsigned long it8152_base_address; unsigned long it8152_base_address;
static int cmx270_it8152_irq_gpio; static int cmx2xx_it8152_irq_gpio;
/* /*
* Only first 64MB of memory can be accessed via PCI. * Only first 64MB of memory can be accessed via PCI.
...@@ -36,13 +36,13 @@ static int cmx270_it8152_irq_gpio; ...@@ -36,13 +36,13 @@ static int cmx270_it8152_irq_gpio;
* This is really ugly and we need a better way of specifying * This is really ugly and we need a better way of specifying
* DMA-capable regions of memory. * DMA-capable regions of memory.
*/ */
void __init cmx270_pci_adjust_zones(int node, unsigned long *zone_size, void __init cmx2xx_pci_adjust_zones(int node, unsigned long *zone_size,
unsigned long *zhole_size) unsigned long *zhole_size)
{ {
unsigned int sz = SZ_64M >> PAGE_SHIFT; unsigned int sz = SZ_64M >> PAGE_SHIFT;
if (machine_is_armcore()) { if (machine_is_armcore()) {
pr_info("Adjusting zones for CM-X270\n"); pr_info("Adjusting zones for CM-X2XX\n");
/* /*
* Only adjust if > 64M on current system * Only adjust if > 64M on current system
...@@ -57,29 +57,29 @@ void __init cmx270_pci_adjust_zones(int node, unsigned long *zone_size, ...@@ -57,29 +57,29 @@ void __init cmx270_pci_adjust_zones(int node, unsigned long *zone_size,
} }
} }
static void cmx270_it8152_irq_demux(unsigned int irq, struct irq_desc *desc) static void cmx2xx_it8152_irq_demux(unsigned int irq, struct irq_desc *desc)
{ {
/* clear our parent irq */ /* clear our parent irq */
GEDR(cmx270_it8152_irq_gpio) = GPIO_bit(cmx270_it8152_irq_gpio); GEDR(cmx2xx_it8152_irq_gpio) = GPIO_bit(cmx2xx_it8152_irq_gpio);
it8152_irq_demux(irq, desc); it8152_irq_demux(irq, desc);
} }
void __cmx270_pci_init_irq(int irq_gpio) void __cmx2xx_pci_init_irq(int irq_gpio)
{ {
it8152_init_irq(); it8152_init_irq();
cmx270_it8152_irq_gpio = irq_gpio; cmx2xx_it8152_irq_gpio = irq_gpio;
set_irq_type(gpio_to_irq(irq_gpio), IRQ_TYPE_EDGE_RISING); set_irq_type(gpio_to_irq(irq_gpio), IRQ_TYPE_EDGE_RISING);
set_irq_chained_handler(gpio_to_irq(irq_gpio), cmx270_it8152_irq_demux); set_irq_chained_handler(gpio_to_irq(irq_gpio), cmx2xx_it8152_irq_demux);
} }
#ifdef CONFIG_PM #ifdef CONFIG_PM
static unsigned long sleep_save_ite[10]; static unsigned long sleep_save_ite[10];
void __cmx270_pci_suspend(void) void __cmx2xx_pci_suspend(void)
{ {
/* save ITE state */ /* save ITE state */
sleep_save_ite[0] = __raw_readl(IT8152_INTC_PDCNIMR); sleep_save_ite[0] = __raw_readl(IT8152_INTC_PDCNIMR);
...@@ -91,7 +91,7 @@ void __cmx270_pci_suspend(void) ...@@ -91,7 +91,7 @@ void __cmx270_pci_suspend(void)
__raw_writel((0), IT8152_INTC_LPCNIRR); __raw_writel((0), IT8152_INTC_LPCNIRR);
} }
void __cmx270_pci_resume(void) void __cmx2xx_pci_resume(void)
{ {
/* restore IT8152 state */ /* restore IT8152 state */
__raw_writel((sleep_save_ite[0]), IT8152_INTC_PDCNIMR); __raw_writel((sleep_save_ite[0]), IT8152_INTC_PDCNIMR);
...@@ -99,12 +99,12 @@ void __cmx270_pci_resume(void) ...@@ -99,12 +99,12 @@ void __cmx270_pci_resume(void)
__raw_writel((sleep_save_ite[2]), IT8152_INTC_LPNIAR); __raw_writel((sleep_save_ite[2]), IT8152_INTC_LPNIAR);
} }
#else #else
void cmx270_pci_suspend(void) {} void cmx2xx_pci_suspend(void) {}
void cmx270_pci_resume(void) {} void cmx2xx_pci_resume(void) {}
#endif #endif
/* PCI IRQ mapping*/ /* PCI IRQ mapping*/
static int __init cmx270_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) static int __init cmx2xx_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
{ {
int irq; int irq;
...@@ -116,14 +116,14 @@ static int __init cmx270_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) ...@@ -116,14 +116,14 @@ static int __init cmx270_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
/* /*
Here comes the ugly part. The routing is baseboard specific, Here comes the ugly part. The routing is baseboard specific,
but defining a platform for each possible base of CM-X270 is but defining a platform for each possible base of CM-X2XX is
unrealistic. Here we keep mapping for ATXBase and SB-X270. unrealistic. Here we keep mapping for ATXBase and SB-X2XX.
*/ */
/* ATXBASE PCI slot */ /* ATXBASE PCI slot */
if (slot == 7) if (slot == 7)
return IT8152_PCI_INTA; return IT8152_PCI_INTA;
/* ATXBase/SB-x270 CardBus */ /* ATXBase/SB-X2XX CardBus */
if (slot == 8 || slot == 0) if (slot == 8 || slot == 0)
return IT8152_PCI_INTB; return IT8152_PCI_INTB;
...@@ -144,9 +144,9 @@ static int __init cmx270_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) ...@@ -144,9 +144,9 @@ static int __init cmx270_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
return(0); return(0);
} }
static void cmx270_pci_preinit(void) static void cmx2xx_pci_preinit(void)
{ {
pr_info("Initializing CM-X270 PCI subsystem\n"); pr_info("Initializing CM-X2XX PCI subsystem\n");
__raw_writel(0x800, IT8152_PCI_CFG_ADDR); __raw_writel(0x800, IT8152_PCI_CFG_ADDR);
if (__raw_readl(IT8152_PCI_CFG_DATA) == 0x81521283) { if (__raw_readl(IT8152_PCI_CFG_DATA) == 0x81521283) {
...@@ -200,21 +200,21 @@ static void cmx270_pci_preinit(void) ...@@ -200,21 +200,21 @@ static void cmx270_pci_preinit(void)
} }
} }
static struct hw_pci cmx270_pci __initdata = { static struct hw_pci cmx2xx_pci __initdata = {
.swizzle = pci_std_swizzle, .swizzle = pci_std_swizzle,
.map_irq = cmx270_pci_map_irq, .map_irq = cmx2xx_pci_map_irq,
.nr_controllers = 1, .nr_controllers = 1,
.setup = it8152_pci_setup, .setup = it8152_pci_setup,
.scan = it8152_pci_scan_bus, .scan = it8152_pci_scan_bus,
.preinit = cmx270_pci_preinit, .preinit = cmx2xx_pci_preinit,
}; };
static int __init cmx270_init_pci(void) static int __init cmx2xx_init_pci(void)
{ {
if (machine_is_armcore()) if (machine_is_armcore())
pci_common_init(&cmx270_pci); pci_common_init(&cmx2xx_pci);
return 0; return 0;
} }
subsys_initcall(cmx270_init_pci); subsys_initcall(cmx2xx_init_pci);
extern void __cmx270_pci_init_irq(int irq_gpio); extern void __cmx2xx_pci_init_irq(int irq_gpio);
extern void __cmx270_pci_suspend(void); extern void __cmx2xx_pci_suspend(void);
extern void __cmx270_pci_resume(void); extern void __cmx2xx_pci_resume(void);
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
#define cmx270_pci_init_irq(x) __cmx270_pci_init_irq(x) #define cmx2xx_pci_init_irq(x) __cmx2xx_pci_init_irq(x)
#define cmx270_pci_suspend(x) __cmx270_pci_suspend(x) #define cmx2xx_pci_suspend(x) __cmx2xx_pci_suspend(x)
#define cmx270_pci_resume(x) __cmx270_pci_resume(x) #define cmx2xx_pci_resume(x) __cmx2xx_pci_resume(x)
#else #else
#define cmx270_pci_init_irq(x) do {} while (0) #define cmx2xx_pci_init_irq(x) do {} while (0)
#define cmx270_pci_suspend(x) do {} while (0) #define cmx2xx_pci_suspend(x) do {} while (0)
#define cmx270_pci_resume(x) do {} while (0) #define cmx2xx_pci_resume(x) do {} while (0)
#endif #endif
This diff is collapsed.
...@@ -40,11 +40,11 @@ ...@@ -40,11 +40,11 @@
#define NODE_MEM_SIZE_BITS 26 #define NODE_MEM_SIZE_BITS 26
#if !defined(__ASSEMBLY__) && defined(CONFIG_MACH_ARMCORE) && defined(CONFIG_PCI) #if !defined(__ASSEMBLY__) && defined(CONFIG_MACH_ARMCORE) && defined(CONFIG_PCI)
void cmx270_pci_adjust_zones(int node, unsigned long *size, void cmx2xx_pci_adjust_zones(int node, unsigned long *size,
unsigned long *holes); unsigned long *holes);
#define arch_adjust_zones(node, size, holes) \ #define arch_adjust_zones(node, size, holes) \
cmx270_pci_adjust_zones(node, size, holes) cmx2xx_pci_adjust_zones(node, size, holes)
#define ISA_DMA_THRESHOLD (PHYS_OFFSET + SZ_64M - 1) #define ISA_DMA_THRESHOLD (PHYS_OFFSET + SZ_64M - 1)
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment