Tzachi Perelstein | 585cf17 | 2007-10-23 15:14:41 -0400 | [diff] [blame] | 1 | #ifndef __ARCH_ORION_COMMON_H__ |
| 2 | #define __ARCH_ORION_COMMON_H__ |
| 3 | |
| 4 | /* |
| 5 | * Basic Orion init functions used early by machine-setup. |
| 6 | */ |
Tzachi Perelstein | c67de5b | 2007-10-23 15:14:42 -0400 | [diff] [blame] | 7 | |
Tzachi Perelstein | 585cf17 | 2007-10-23 15:14:41 -0400 | [diff] [blame] | 8 | void __init orion_map_io(void); |
Tzachi Perelstein | c67de5b | 2007-10-23 15:14:42 -0400 | [diff] [blame] | 9 | void __init orion_init(void); |
| 10 | |
| 11 | /* |
| 12 | * Enumerations and functions for Orion windows mapping. Used by Orion core |
| 13 | * functions to map its interfaces and by the machine-setup to map its on- |
| 14 | * board devices. Details in /mach-orion/addr-map.c |
| 15 | */ |
| 16 | |
| 17 | enum orion_target { |
| 18 | ORION_DEV_BOOT = 0, |
| 19 | ORION_DEV0, |
| 20 | ORION_DEV1, |
| 21 | ORION_DEV2, |
| 22 | ORION_PCIE_MEM, |
| 23 | ORION_PCIE_IO, |
| 24 | ORION_PCI_MEM, |
| 25 | ORION_PCI_IO, |
| 26 | ORION_DDR, |
| 27 | ORION_REGS, |
| 28 | ORION_MAX_TARGETS |
| 29 | }; |
| 30 | |
| 31 | void orion_setup_cpu_win(enum orion_target target, u32 base, u32 size, int remap); |
| 32 | void orion_setup_cpu_wins(void); |
| 33 | void orion_setup_eth_wins(void); |
| 34 | void orion_setup_usb_wins(void); |
| 35 | void orion_setup_pci_wins(void); |
| 36 | void orion_setup_pcie_wins(void); |
| 37 | void orion_setup_sata_wins(void); |
Tzachi Perelstein | 585cf17 | 2007-10-23 15:14:41 -0400 | [diff] [blame] | 38 | |
Tzachi Perelstein | 038ee08 | 2007-10-23 15:14:42 -0400 | [diff] [blame] | 39 | /* |
| 40 | * Shared code used internally by other Orion core functions. |
| 41 | * (/mach-orion/pci.c) |
| 42 | */ |
| 43 | |
| 44 | struct pci_sys_data; |
| 45 | struct pci_bus; |
| 46 | |
| 47 | void orion_pcie_id(u32 *dev, u32 *rev); |
| 48 | u32 orion_pcie_local_bus_nr(void); |
| 49 | u32 orion_pci_local_bus_nr(void); |
| 50 | u32 orion_pci_local_dev_nr(void); |
| 51 | int orion_pci_sys_setup(int nr, struct pci_sys_data *sys); |
| 52 | struct pci_bus *orion_pci_sys_scan_bus(int nr, struct pci_sys_data *sys); |
| 53 | int orion_pci_hw_rd_conf(u32 bus, u32 dev, u32 func, u32 where, u32 size, u32 *val); |
| 54 | int orion_pci_hw_wr_conf(u32 bus, u32 dev, u32 func, u32 where, u32 size, u32 val); |
| 55 | |
Tzachi Perelstein | 01af72e | 2007-10-23 15:14:42 -0400 | [diff] [blame^] | 56 | /* |
| 57 | * Valid GPIO pins according to MPP setup, used by machine-setup. |
| 58 | * (/mach-orion/gpio.c). |
| 59 | */ |
| 60 | |
| 61 | void __init orion_gpio_set_valid_pins(u32 pins); |
| 62 | void gpio_display(void); /* debug */ |
| 63 | |
Tzachi Perelstein | 585cf17 | 2007-10-23 15:14:41 -0400 | [diff] [blame] | 64 | #endif /* __ARCH_ORION_COMMON_H__ */ |