2 * include/asm-ppc/gt64260.h
4 * Prototypes, etc. for the Marvell/Galileo GT64260 host bridge routines.
6 * Author: Mark A. Greer <mgreer@mvista.com>
8 * 2001 (c) MontaVista, Software, Inc. This file is licensed under
9 * the terms of the GNU General Public License version 2. This program
10 * is licensed "as is" without any warranty of any kind, whether express
13 #ifndef __ASMPPC_GT64260_H
14 #define __ASMPPC_GT64260_H
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/pci.h>
19 #include <linux/slab.h>
21 #include <asm/byteorder.h>
24 #include <asm/uaccess.h>
25 #include <asm/machdep.h>
26 #include <asm/pci-bridge.h>
27 #include <asm/gt64260_defs.h>
30 extern u32 gt64260_base;
31 extern u32 gt64260_irq_base; /* We handle the next 96 IRQs from here */
32 extern u32 gt64260_revision;
33 extern u8 gt64260_pci_exclude_bridge;
43 /* IRQs defined by the 64260 */
44 #define GT64260_IRQ_MPSC0 40
45 #define GT64260_IRQ_MPSC1 42
46 #define GT64260_IRQ_SDMA 36
49 * Define a default physical memory map to be set up on the bridge.
50 * Also define a struct to pass that info from board-specific routines to
51 * GT64260 generic set up routines. By passing this info in, the board
52 * support developer can modify it at will.
56 * This is the default memory map:
59 * PCI 0 I/O: 0xfa000000-0xfaffffff 0x00000000-0x00ffffff
60 * PCI 1 I/O: 0xfb000000-0xfbffffff 0x01000000-0x01ffffff
61 * PCI 0 MEM: 0x80000000-0x8fffffff 0x80000000-0x8fffffff
62 * PCI 1 MEM: 0x90000000-0x9fffffff 0x90000000-0x9fffffff
65 /* Default physical memory map for the GT64260 bridge */
68 * PCI Bus 0 Definitions
70 #define GT64260_PCI_0_IO_SIZE 0x01000000U
71 #define GT64260_PCI_0_MEM_SIZE 0x10000000U
73 /* Processor Physical addresses */
74 #define GT64260_PCI_0_IO_START_PROC 0xfa000000U
75 #define GT64260_PCI_0_IO_END_PROC (GT64260_PCI_0_IO_START_PROC + \
76 GT64260_PCI_0_IO_SIZE - 1)
79 #define GT64260_PCI_0_IO_START 0x00000000U
80 #define GT64260_PCI_0_IO_END (GT64260_PCI_0_IO_START + \
81 GT64260_PCI_0_IO_SIZE - 1)
83 /* Processor Physical addresses */
84 #define GT64260_PCI_0_MEM_START_PROC 0x80000000U
85 #define GT64260_PCI_0_MEM_END_PROC (GT64260_PCI_0_MEM_START_PROC + \
86 GT64260_PCI_0_MEM_SIZE - 1)
89 #define GT64260_PCI_0_MEM_START 0x80000000U
90 #define GT64260_PCI_0_MEM_END (GT64260_PCI_0_MEM_START + \
91 GT64260_PCI_0_MEM_SIZE - 1)
94 * PCI Bus 1 Definitions
96 #define GT64260_PCI_1_IO_SIZE 0x01000000U
97 #define GT64260_PCI_1_MEM_SIZE 0x10000000U
100 #define GT64260_PCI_1_IO_START 0x01000000U
101 #define GT64260_PCI_1_IO_END (GT64260_PCI_1_IO_START + \
102 GT64260_PCI_1_IO_SIZE - 1)
104 /* Processor Physical addresses */
105 #define GT64260_PCI_1_IO_START_PROC 0xfb000000U
106 #define GT64260_PCI_1_IO_END_PROC (GT64260_PCI_1_IO_START_PROC + \
107 GT64260_PCI_1_IO_SIZE - 1)
109 /* PCI 1 addresses */
110 #define GT64260_PCI_1_MEM_START 0x90000000U
111 #define GT64260_PCI_1_MEM_END (GT64260_PCI_1_MEM_START + \
112 GT64260_PCI_1_MEM_SIZE - 1)
114 /* Processor Physical addresses */
115 #define GT64260_PCI_1_MEM_START_PROC 0x90000000U
116 #define GT64260_PCI_1_MEM_END_PROC (GT64260_PCI_1_MEM_START_PROC + \
117 GT64260_PCI_1_MEM_SIZE - 1)
119 /* Define struct to pass mem-map info into gt64260_common.c code */
121 struct pci_controller *hose_a;
122 struct pci_controller *hose_b;
126 u32 pci_0_io_start_proc;
127 u32 pci_0_io_start_pci;
131 u32 pci_0_mem_start_proc;
132 u32 pci_0_mem_start_pci_hi;
133 u32 pci_0_mem_start_pci_lo;
137 u32 pci_1_io_start_proc;
138 u32 pci_1_io_start_pci;
142 u32 pci_1_mem_start_proc;
143 u32 pci_1_mem_start_pci_hi;
144 u32 pci_1_mem_start_pci_lo;
147 } gt64260_bridge_info_t;
149 #define GT64260_BRIDGE_INFO_DEFAULT(ip, ms) { \
150 (ip)->mem_size = (ms); \
152 (ip)->pci_0_io_start_proc = GT64260_PCI_0_IO_START_PROC; \
153 (ip)->pci_0_io_start_pci = GT64260_PCI_0_IO_START; \
154 (ip)->pci_0_io_size = GT64260_PCI_0_IO_SIZE; \
155 (ip)->pci_0_io_swap = GT64260_CPU_PCI_SWAP_NONE; \
157 (ip)->pci_0_mem_start_proc = GT64260_PCI_0_MEM_START_PROC; \
158 (ip)->pci_0_mem_start_pci_hi = 0x00000000; \
159 (ip)->pci_0_mem_start_pci_lo = GT64260_PCI_0_MEM_START; \
160 (ip)->pci_0_mem_size = GT64260_PCI_0_MEM_SIZE; \
161 (ip)->pci_0_mem_swap = GT64260_CPU_PCI_SWAP_NONE; \
163 (ip)->pci_1_io_start_proc = GT64260_PCI_1_IO_START_PROC; \
164 (ip)->pci_1_io_start_pci = GT64260_PCI_1_IO_START; \
165 (ip)->pci_1_io_size = GT64260_PCI_1_IO_SIZE; \
166 (ip)->pci_1_io_swap = GT64260_CPU_PCI_SWAP_NONE; \
168 (ip)->pci_1_mem_start_proc = GT64260_PCI_1_MEM_START_PROC; \
169 (ip)->pci_1_mem_start_pci_hi = 0x00000000; \
170 (ip)->pci_1_mem_start_pci_lo = GT64260_PCI_1_MEM_START; \
171 (ip)->pci_1_mem_size = GT64260_PCI_1_MEM_SIZE; \
172 (ip)->pci_1_mem_swap = GT64260_CPU_PCI_SWAP_NONE; \
176 *****************************************************************************
178 * I/O macros to access the 64260's registers
180 *****************************************************************************
183 extern inline uint32_t gt_read(uint32_t offs){
184 return (in_le32((volatile uint *)(gt64260_base + offs)));
186 extern inline void gt_write(uint32_t offs, uint32_t d){
187 out_le32((volatile uint *)(gt64260_base + offs), d);
190 #if 0 /* paranoid SMP version */
191 extern inline void gt_modify(u32 offs, u32 data, u32 mask) \
194 spin_lock(>64260_lock);
195 reg = gt_read(offs) & (~mask); /* zero any bits we care about*/
196 reg |= data & mask; /* set bits from the data */
198 spin_unlock(>64260_lock);
201 extern inline void gt_modify(uint32_t offs, uint32_t data, uint32_t mask)
204 reg = gt_read(offs) & (~(mask)); /* zero any bits we care about*/
205 reg |= (data) & (mask); /* set bits from the data */
209 #define gt_set_bits(offs, bits) gt_modify(offs, ~0, bits)
211 #define gt_clr_bits(offs, bits) gt_modify(offs, 0, bits)
215 *****************************************************************************
217 * Function Prototypes
219 *****************************************************************************
222 int gt64260_find_bridges(u32 phys_base_addr, gt64260_bridge_info_t *info,
223 int ((*map_irq)(struct pci_dev *, unsigned char, unsigned char)));
224 int gt64260_bridge_init(gt64260_bridge_info_t *info);
225 int gt64260_cpu_scs_set_window(u32 window,
228 int gt64260_cpu_cs_set_window(u32 window,
231 int gt64260_cpu_boot_set_window(u32 base_addr,
233 int gt64260_cpu_set_pci_io_window(u32 pci_bus,
238 int gt64260_cpu_set_pci_mem_window(u32 pci_bus,
241 u32 pci_base_addr_hi,
242 u32 pci_base_addr_lo,
245 int gt64260_cpu_prot_set_window(u32 window,
249 int gt64260_cpu_snoop_set_window(u32 window,
253 void gt64260_cpu_disable_all_windows(void);
254 int gt64260_pci_bar_enable(u32 pci_bus, u32 enable_bits);
255 int gt64260_pci_slave_scs_set_window(struct pci_controller *hose,
260 int gt64260_pci_slave_cs_set_window(struct pci_controller *hose,
265 int gt64260_pci_slave_boot_set_window(struct pci_controller *hose,
269 int gt64260_pci_slave_p2p_mem_set_window(struct pci_controller *hose,
272 u32 other_bus_base_addr,
274 int gt64260_pci_slave_p2p_io_set_window(struct pci_controller *hose,
276 u32 other_bus_base_addr,
278 int gt64260_pci_slave_dac_scs_set_window(struct pci_controller *hose,
280 u32 pci_base_addr_hi,
281 u32 pci_base_addr_lo,
284 int gt64260_pci_slave_dac_cs_set_window(struct pci_controller *hose,
286 u32 pci_base_addr_hi,
287 u32 pci_base_addr_lo,
290 int gt64260_pci_slave_dac_boot_set_window(struct pci_controller *hose,
291 u32 pci_base_addr_hi,
292 u32 pci_base_addr_lo,
295 int gt64260_pci_slave_dac_p2p_mem_set_window(struct pci_controller *hose,
297 u32 pci_base_addr_hi,
298 u32 pci_base_addr_lo,
299 u32 other_bus_base_addr,
301 int gt64260_pci_acc_cntl_set_window(u32 pci_bus,
307 int gt64260_pci_snoop_set_window(u32 pci_bus,
313 int gt64260_set_base(u32 new_base);
314 int gt64260_get_base(u32 *base);
315 int gt64260_pci_exclude_device(u8 bus, u8 devfn);
317 void gt64260_init_irq(void);
318 int gt64260_get_irq(void);
320 void gt64260_mpsc_progress(char *s, unsigned short hex);
322 #endif /* __ASMPPC_GT64260_H */