- pre3:
[davej-history.git] / include / asm-arm / arch-ebsa285 / hardware.h
blob5d1455fb801de627e3bcc7a2bfcb6aeb48371e3c
1 /*
2 * linux/include/asm-arm/arch-ebsa285/hardware.h
4 * Copyright (C) 1998-1999 Russell King.
6 * This file contains the hardware definitions of the EBSA-285.
7 */
8 #ifndef __ASM_ARCH_HARDWARE_H
9 #define __ASM_ARCH_HARDWARE_H
11 #include <linux/config.h>
12 #include <asm/arch/memory.h>
14 #ifdef CONFIG_ARCH_FOOTBRIDGE
15 /* Virtual Physical Size
16 * 0xff800000 0x40000000 1MB X-Bus
17 * 0xff000000 0x7c000000 1MB PCI I/O space
18 * 0xfe000000 0x42000000 1MB CSR
19 * 0xfd000000 0x78000000 1MB Outbound write flush (not supported)
20 * 0xfc000000 0x79000000 1MB PCI IACK/special space
21 * 0xfb000000 0x7a000000 16MB PCI Config type 1
22 * 0xfa000000 0x7b000000 16MB PCI Config type 0
23 * 0xf9000000 0x50000000 1MB Cache flush
24 * 0xf0000000 0x80000000 16MB ISA memory
26 #define XBUS_SIZE 0x00100000
27 #define XBUS_BASE 0xff800000
29 #define PCIO_SIZE 0x00100000
30 #define PCIO_BASE 0xff000000
32 #define ARMCSR_SIZE 0x00100000
33 #define ARMCSR_BASE 0xfe000000
35 #define WFLUSH_SIZE 0x00100000
36 #define WFLUSH_BASE 0xfd000000
38 #define PCIIACK_SIZE 0x00100000
39 #define PCIIACK_BASE 0xfc000000
41 #define PCICFG1_SIZE 0x01000000
42 #define PCICFG1_BASE 0xfb000000
44 #define PCICFG0_SIZE 0x01000000
45 #define PCICFG0_BASE 0xfa000000
47 #define FLUSH_SIZE 0x00100000
48 #define FLUSH_BASE 0xf9000000
50 #define PCIMEM_SIZE 0x01000000
51 #define PCIMEM_BASE 0xf0000000
53 #elif defined(CONFIG_ARCH_CO285)
55 * This is the COEBSA285 cut-down mapping
57 #define PCIMEM_SIZE 0x80000000
58 #define PCIMEM_BASE 0x80000000
60 #define FLUSH_SIZE 0x00100000
61 #define FLUSH_BASE 0x7e000000
63 #define WFLUSH_SIZE 0x01000000
64 #define WFLUSH_BASE 0x7d000000
66 #define ARMCSR_SIZE 0x00100000
67 #define ARMCSR_BASE 0x7cf00000
69 #define XBUS_SIZE 0x00020000
70 #define XBUS_BASE 0x7cee0000
72 #define PCIO_SIZE 0x00010000
73 #define PCIO_BASE 0x7ced0000
75 #else
77 #error "Undefined footbridge architecture"
79 #endif
81 #define XBUS_LEDS ((volatile unsigned char *)(XBUS_BASE + 0x12000))
82 #define XBUS_LED_AMBER (1 << 0)
83 #define XBUS_LED_GREEN (1 << 1)
84 #define XBUS_LED_RED (1 << 2)
85 #define XBUS_LED_TOGGLE (1 << 8)
87 #define XBUS_SWITCH ((volatile unsigned char *)(XBUS_BASE + 0x12000))
88 #define XBUS_SWITCH_SWITCH ((*XBUS_SWITCH) & 15)
89 #define XBUS_SWITCH_J17_13 ((*XBUS_SWITCH) & (1 << 4))
90 #define XBUS_SWITCH_J17_11 ((*XBUS_SWITCH) & (1 << 5))
91 #define XBUS_SWITCH_J17_9 ((*XBUS_SWITCH) & (1 << 6))
93 #define PARAMS_OFFSET 0x0100
95 #define FLUSH_BASE_PHYS 0x50000000
96 #define UNCACHEABLE_ADDR (ARMCSR_BASE + 0x108)
99 /* PIC irq control */
100 #define PIC_LO 0x20
101 #define PIC_MASK_LO 0x21
102 #define PIC_HI 0xA0
103 #define PIC_MASK_HI 0xA1
105 /* GPIO pins */
106 #define GPIO_CCLK 0x800
107 #define GPIO_DSCLK 0x400
108 #define GPIO_E2CLK 0x200
109 #define GPIO_IOLOAD 0x100
110 #define GPIO_RED_LED 0x080
111 #define GPIO_WDTIMER 0x040
112 #define GPIO_DATA 0x020
113 #define GPIO_IOCLK 0x010
114 #define GPIO_DONE 0x008
115 #define GPIO_FAN 0x004
116 #define GPIO_GREEN_LED 0x002
117 #define GPIO_RESET 0x001
119 /* CPLD pins */
120 #define CPLD_DS_ENABLE 8
121 #define CPLD_7111_DISABLE 4
122 #define CPLD_UNMUTE 2
123 #define CPLD_FLASH_WR_ENABLE 1
125 #ifndef __ASSEMBLY__
126 extern void gpio_modify_op(int mask, int set);
127 extern void gpio_modify_io(int mask, int in);
128 extern int gpio_read(void);
129 extern void cpld_modify(int mask, int set);
130 #endif
132 #endif