[SPARC64]: Use SLAB caches for TSB tables.
[linux-2.6/verdex.git] / include / asm-arm / arch-ixp4xx / platform.h
blobdaf9790645ca2bd7746ddce03d50f7a1a67b5147
1 /*
2 * include/asm-arm/arch-ixp4xx/platform.h
4 * Constants and functions that are useful to IXP4xx platform-specific code
5 * and device drivers.
7 * Copyright (C) 2004 MontaVista Software, Inc.
8 */
10 #ifndef __ASM_ARCH_HARDWARE_H__
11 #error "Do not include this directly, instead #include <asm/hardware.h>"
12 #endif
14 #ifndef __ASSEMBLY__
16 #include <asm/types.h>
18 #ifndef __ARMEB__
19 #define REG_OFFSET 0
20 #else
21 #define REG_OFFSET 3
22 #endif
25 * Expansion bus memory regions
27 #define IXP4XX_EXP_BUS_BASE_PHYS (0x50000000)
30 * The expansion bus on the IXP4xx can be configured for either 16 or
31 * 32MB windows and the CS offset for each region changes based on the
32 * current configuration. This means that we cannot simply hardcode
33 * each offset. ixp4xx_sys_init() looks at the expansion bus configuration
34 * as setup by the bootloader to determine our window size.
36 extern unsigned long ixp4xx_exp_bus_size;
38 #define IXP4XX_EXP_BUS_BASE(region)\
39 (IXP4XX_EXP_BUS_BASE_PHYS + ((region) * ixp4xx_exp_bus_size))
41 #define IXP4XX_FLASH_WRITABLE (0x2)
42 #define IXP4XX_FLASH_DEFAULT (0xbcd23c40)
43 #define IXP4XX_FLASH_WRITE (0xbcd23c42)
46 * Clock Speed Definitions.
48 #define IXP4XX_PERIPHERAL_BUS_CLOCK (66) /* 66Mhzi APB BUS */
49 #define IXP4XX_UART_XTAL 14745600
52 * The IXP4xx chips do not have an I2C unit, so GPIO lines are just
53 * used to
54 * Used as platform_data to provide GPIO pin information to the ixp42x
55 * I2C driver.
57 struct ixp4xx_i2c_pins {
58 unsigned long sda_pin;
59 unsigned long scl_pin;
63 struct sys_timer;
66 * Functions used by platform-level setup code
68 extern void ixp4xx_map_io(void);
69 extern void ixp4xx_init_irq(void);
70 extern void ixp4xx_sys_init(void);
71 extern struct sys_timer ixp4xx_timer;
72 extern void ixp4xx_pci_preinit(void);
73 struct pci_sys_data;
74 extern int ixp4xx_setup(int nr, struct pci_sys_data *sys);
75 extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys);
78 * GPIO-functions
81 * The following converted to the real HW bits the gpio_line_config
83 /* GPIO pin types */
84 #define IXP4XX_GPIO_OUT 0x1
85 #define IXP4XX_GPIO_IN 0x2
87 /* GPIO signal types */
88 #define IXP4XX_GPIO_LOW 0
89 #define IXP4XX_GPIO_HIGH 1
91 /* GPIO Clocks */
92 #define IXP4XX_GPIO_CLK_0 14
93 #define IXP4XX_GPIO_CLK_1 15
95 static inline void gpio_line_config(u8 line, u32 direction)
97 if (direction == IXP4XX_GPIO_IN)
98 *IXP4XX_GPIO_GPOER |= (1 << line);
99 else
100 *IXP4XX_GPIO_GPOER &= ~(1 << line);
103 static inline void gpio_line_get(u8 line, int *value)
105 *value = (*IXP4XX_GPIO_GPINR >> line) & 0x1;
108 static inline void gpio_line_set(u8 line, int value)
110 if (value == IXP4XX_GPIO_HIGH)
111 *IXP4XX_GPIO_GPOUTR |= (1 << line);
112 else if (value == IXP4XX_GPIO_LOW)
113 *IXP4XX_GPIO_GPOUTR &= ~(1 << line);
116 #endif // __ASSEMBLY__