blob: fc38d57aaa97ce00bcb5e17b776b3ab837f644d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
* linux/include/asm-arm/arch-shark/hardware.h
*
* by Alexander.Schulz@stud.uni-karlsruhe.de
*
* derived from:
* linux/include/asm-arm/arch-ebsa110/hardware.h
* Copyright (C) 1996-1999 Russell King.
*/
#ifndef __ASM_ARCH_HARDWARE_H
#define __ASM_ARCH_HARDWARE_H
#ifndef __ASSEMBLY__
/*
* Mapping areas
*/
#define IO_BASE 0xe0000000
/*
* RAM definitions
*/
#define FLUSH_BASE_PHYS 0x60000000
#else
#define IO_BASE 0
#endif
#define IO_SIZE 0x10000000
#define IO_START 0x40000000
#define FLUSH_BASE 0xdf000000
#define PCIO_BASE 0xe0000000
/* defines for the Framebuffer */
#define FB_BASE 0xd0000000
#define FB_START 0x06000000
#define FB_SIZE 0x00200000
/* Registers for Framebuffer */
#define FBREG_BASE (FB_BASE + FB_SIZE)
#define FBREG_START 0x06800000
#define FBREG_SIZE 0x000c0000
#endif
|