1 #ifndef __ARCH_ORION5X_COMMON_H
2 #define __ARCH_ORION5X_COMMON_H
5 * Basic Orion init functions used early by machine-setup.
8 void orion5x_map_io(void);
9 void orion5x_init_irq(void);
10 void orion5x_init(void);
11 extern struct sys_timer orion5x_timer
;
14 * Enumerations and functions for Orion windows mapping. Used by Orion core
15 * functions to map its interfaces and by the machine-setup to map its on-
16 * board devices. Details in /mach-orion/addr-map.c
18 extern struct mbus_dram_target_info orion5x_mbus_dram_info
;
19 void orion5x_setup_cpu_mbus_bridge(void);
20 void orion5x_setup_dev_boot_win(u32 base
, u32 size
);
21 void orion5x_setup_dev0_win(u32 base
, u32 size
);
22 void orion5x_setup_dev1_win(u32 base
, u32 size
);
23 void orion5x_setup_dev2_win(u32 base
, u32 size
);
24 void orion5x_setup_pcie_wa_win(u32 base
, u32 size
);
27 * Shared code used internally by other Orion core functions.
34 void orion5x_pcie_id(u32
*dev
, u32
*rev
);
35 int orion5x_pci_sys_setup(int nr
, struct pci_sys_data
*sys
);
36 struct pci_bus
*orion5x_pci_sys_scan_bus(int nr
, struct pci_sys_data
*sys
);
37 int orion5x_pci_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
);
40 * Valid GPIO pins according to MPP setup, used by machine-setup.
41 * (/mach-orion/gpio.c).
44 void orion5x_gpio_set_valid_pins(u32 pins
);
45 void gpio_display(void); /* debug */
48 * Pull in Orion Ethernet platform_data, used by machine-setup
51 struct mv643xx_eth_platform_data
;
53 void orion5x_eth_init(struct mv643xx_eth_platform_data
*eth_data
);
56 * Orion Sata platform_data, used by machine-setup
59 struct mv_sata_platform_data
;
61 void orion5x_sata_init(struct mv_sata_platform_data
*sata_data
);
66 extern void __init
tag_fixup_mem32(struct machine_desc
*, struct tag
*,
67 char **, struct meminfo
*);