common.h 1.8 KB
Newer Older
L
Lennert Buytenhek 已提交
1 2
#ifndef __ARCH_ORION_COMMON_H
#define __ARCH_ORION_COMMON_H
3 4 5 6

/*
 * Basic Orion init functions used early by machine-setup.
 */
7

L
Lennert Buytenhek 已提交
8 9 10
void orion_map_io(void);
void orion_init_irq(void);
void orion_init(void);
11
extern struct sys_timer orion_timer;
12 13 14 15 16 17

/*
 * Enumerations and functions for Orion windows mapping. Used by Orion core
 * functions to map its interfaces and by the machine-setup to map its on-
 * board devices. Details in /mach-orion/addr-map.c
 */
18
extern struct mbus_dram_target_info orion_mbus_dram_info;
19 20 21 22 23 24
void orion_setup_cpu_mbus_bridge(void);
void orion_setup_dev_boot_win(u32 base, u32 size);
void orion_setup_dev0_win(u32 base, u32 size);
void orion_setup_dev1_win(u32 base, u32 size);
void orion_setup_dev2_win(u32 base, u32 size);
void orion_setup_pcie_wa_win(u32 base, u32 size);
25
void orion_setup_eth_wins(void);
26

T
Tzachi Perelstein 已提交
27 28 29 30 31 32 33 34 35
/*
 * Shared code used internally by other Orion core functions.
 * (/mach-orion/pci.c)
 */

struct pci_sys_data;
struct pci_bus;

void orion_pcie_id(u32 *dev, u32 *rev);
36 37
int orion_pcie_local_bus_nr(void);
int orion_pci_local_bus_nr(void);
T
Tzachi Perelstein 已提交
38 39 40
int orion_pci_sys_setup(int nr, struct pci_sys_data *sys);
struct pci_bus *orion_pci_sys_scan_bus(int nr, struct pci_sys_data *sys);

T
Tzachi Perelstein 已提交
41 42 43 44 45
/*
 * Valid GPIO pins according to MPP setup, used by machine-setup.
 * (/mach-orion/gpio.c).
 */

L
Lennert Buytenhek 已提交
46
void orion_gpio_set_valid_pins(u32 pins);
T
Tzachi Perelstein 已提交
47 48
void gpio_display(void);	/* debug */

49 50 51 52 53 54
/*
 * Pull in Orion Ethernet platform_data, used by machine-setup
 */

struct mv643xx_eth_platform_data;

L
Lennert Buytenhek 已提交
55
void orion_eth_init(struct mv643xx_eth_platform_data *eth_data);
56

57 58 59 60 61 62
/*
 * Orion Sata platform_data, used by machine-setup
 */

struct mv_sata_platform_data;

L
Lennert Buytenhek 已提交
63
void orion_sata_init(struct mv_sata_platform_data *sata_data);
64

65 66 67 68 69 70
struct machine_desc;
struct meminfo;
struct tag;
extern void __init tag_fixup_mem32(struct machine_desc *, struct tag *,
				   char **, struct meminfo *);

L
Lennert Buytenhek 已提交
71 72

#endif