]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm/mach-ixp23xx/include/mach/platform.h
Linux 3.4-rc1
[mirror_ubuntu-artful-kernel.git] / arch / arm / mach-ixp23xx / include / mach / platform.h
CommitLineData
c4713074 1/*
a09e64fb 2 * arch/arm/mach-ixp23xx/include/mach/platform.h
c4713074
LB
3 *
4 * Various bits of code used by platform-level code.
5 *
6 * Author: Deepak Saxena <dsaxena@plexity.net>
7 *
8 * Copyright 2005 (c) MontaVista Software, Inc.
9 *
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
13 */
14
15#ifndef __ASSEMBLY__
16
38598105 17static inline unsigned long ixp2000_reg_read(volatile void *reg)
8b76a68c
LB
18{
19 return *((volatile unsigned long *)reg);
20}
21
38598105 22static inline void ixp2000_reg_write(volatile void *reg, unsigned long val)
8b76a68c
LB
23{
24 *((volatile unsigned long *)reg) = val;
25}
26
38598105 27static inline void ixp2000_reg_wrb(volatile void *reg, unsigned long val)
8b76a68c
LB
28{
29 *((volatile unsigned long *)reg) = val;
30}
31
c4713074
LB
32struct pci_sys_data;
33
34void ixp23xx_map_io(void);
35void ixp23xx_init_irq(void);
36void ixp23xx_sys_init(void);
b219415c 37void ixp23xx_restart(char, const char *);
c4713074
LB
38int ixp23xx_pci_setup(int, struct pci_sys_data *);
39void ixp23xx_pci_preinit(void);
40struct pci_bus *ixp23xx_pci_scan_bus(int, struct pci_sys_data*);
532bda5d 41void ixp23xx_pci_slave_init(void);
c4713074
LB
42
43extern struct sys_timer ixp23xx_timer;
44
45#define IXP23XX_UART_XTAL 14745600
46
02c42931
LB
47#ifndef __ASSEMBLY__
48/*
49 * Is system memory on the XSI or CPP bus?
50 */
51static inline unsigned ixp23xx_cpp_boot(void)
52{
53 return (*IXP23XX_EXP_CFG0 & IXP23XX_EXP_CFG0_XSI_NOT_PRES);
54}
55#endif
56
c4713074
LB
57
58#endif