blob: 44b800f681638f5f3d6fd090ae55b88a31f25a7d [file] [log] [blame]
wdenk1fe2c702003-03-06 21:55:29 +00001/*
2 * linux/include/asm-arm/arch-pxa/hardware.h
3 *
4 * Author: Nicolas Pitre
5 * Created: Jun 15, 2001
6 * Copyright: MontaVista Software Inc.
wdenk57b2d802003-06-27 21:31:46 +00007 *
wdenk1fe2c702003-03-06 21:55:29 +00008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010011 *
12 * Note: This file was taken from linux-2.4.19-rmk4-pxa1
13 *
14 * - 2003/01/20 implementation specifics activated
15 * Robert Schwebel <r.schwebel@pengutronix.de>
wdenk1fe2c702003-03-06 21:55:29 +000016 */
17
18#ifndef __ASM_ARCH_HARDWARE_H
19#define __ASM_ARCH_HARDWARE_H
20
21#include <linux/config.h>
22#include <asm/mach-types.h>
23
Marek Vasut2db1e962010-09-09 09:50:39 +020024/*
25 * Define CONFIG_CPU_MONAHANS in case some CPU of the PXA3xx family is selected.
26 * PXA300/310/320 all have distinct register mappings in some cases, that's why
27 * the exact CPU has to be selected. CONFIG_CPU_MONAHANS is a helper for common
28 * drivers and compatibility glue with old source then.
29 */
30#ifndef CONFIG_CPU_MONAHANS
31#if defined(CONFIG_CPU_PXA300) || \
32 defined(CONFIG_CPU_PXA310) || \
33 defined(CONFIG_CPU_PXA320)
34#define CONFIG_CPU_MONAHANS
35#endif
36#endif
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010037
38/*
39 * These are statically mapped PCMCIA IO space for designs using it as a
40 * generic IO bus, typically with ISA parts, hardwired IDE interfaces, etc.
41 * The actual PCMCIA code is mapping required IO region at run time.
42 */
43#define PCMCIA_IO_0_BASE 0xf6000000
44#define PCMCIA_IO_1_BASE 0xf7000000
45
46
wdenk1fe2c702003-03-06 21:55:29 +000047/*
48 * We requires absolute addresses.
49 */
50#define PCIO_BASE 0
51
52/*
53 * Workarounds for at least 2 errata so far require this.
54 * The mapping is set in mach-pxa/generic.c.
55 */
56#define UNCACHED_PHYS_0 0xff000000
57#define UNCACHED_ADDR UNCACHED_PHYS_0
58
59/*
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010060 * Intel PXA internal I/O mappings:
wdenk1fe2c702003-03-06 21:55:29 +000061 *
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010062 * 0x40000000 - 0x41ffffff <--> 0xf8000000 - 0xf9ffffff
63 * 0x44000000 - 0x45ffffff <--> 0xfa000000 - 0xfbffffff
64 * 0x48000000 - 0x49ffffff <--> 0xfc000000 - 0xfdffffff
wdenk1fe2c702003-03-06 21:55:29 +000065 */
wdenk1fe2c702003-03-06 21:55:29 +000066
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010067#include "pxa-regs.h"
wdenk1fe2c702003-03-06 21:55:29 +000068
69#ifndef __ASSEMBLY__
70
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010071/*
72 * GPIO edge detection for IRQs:
73 * IRQs are generated on Falling-Edge, Rising-Edge, or both.
74 * This must be called *before* the corresponding IRQ is registered.
75 * Use this instead of directly setting GRER/GFER.
76 */
77#define GPIO_FALLING_EDGE 1
78#define GPIO_RISING_EDGE 2
79#define GPIO_BOTH_EDGES 3
80extern void set_GPIO_IRQ_edge( int gpio_nr, int edge_mask );
wdenk1fe2c702003-03-06 21:55:29 +000081
82/*
83 * Handy routine to set GPIO alternate functions
84 */
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010085extern void set_GPIO_mode( int gpio_mode );
wdenk1fe2c702003-03-06 21:55:29 +000086
87/*
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010088 * return current lclk frequency in units of 10kHz
wdenk1fe2c702003-03-06 21:55:29 +000089 */
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010090extern unsigned int get_lclk_frequency_10khz(void);
91
92#endif
93
wdenk1fe2c702003-03-06 21:55:29 +000094
95/*
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +010096 * Implementation specifics
wdenk1fe2c702003-03-06 21:55:29 +000097 */
98
99#ifdef CONFIG_ARCH_LUBBOCK
100#include "lubbock.h"
101#endif
102
103#ifdef CONFIG_ARCH_PXA_IDP
104#include "idp.h"
105#endif
106
107#ifdef CONFIG_ARCH_PXA_CERF
108#include "cerf.h"
109#endif
110
111#ifdef CONFIG_ARCH_CSB226
112#include "csb226.h"
113#endif
114
115#ifdef CONFIG_ARCH_INNOKOM
116#include "innokom.h"
117#endif
118
wdenk68005192005-01-09 21:28:15 +0000119#ifdef CONFIG_ARCH_PLEB
120#include "pleb.h"
121#endif
122
Markus Klotzbücher50d3edf2006-02-08 18:56:28 +0100123#endif /* _ASM_ARCH_HARDWARE_H */