hardware.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-s3c2410/hardware.h
  3.  *
  4.  * Copyright (C) 2002 MIZI Research, Inc.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. /*
  21.  * History
  22.  *
  23.  * 2002-05-20: Janghoon Lyu <nandy@mizi.com>
  24.  *    - Initial code
  25.  */
  26. #ifndef __ASM_ARCH_HARDWARE_H
  27. #define __ASM_ARCH_HARDWARE_H
  28. #include <linux/config.h>
  29. #include <asm/mach-types.h>
  30. /* Flusing areas */
  31. #define FLUSH_BASE_PHYS 0xe0000000 /* there is not exist physical memory */
  32. #define FLUSH_BASE 0xdf000000
  33. #define FLUSH_BASE_MINICACHE 0xde000000
  34. #define UNCACHEABLE_ADDR 0xdc000000
  35. #define MEM_SIZE 0x04000000
  36. /*
  37.  * 角力肺绰 粮犁窍绰 巴篮 酒聪瘤父, 促弗 目澄 内靛甸阑 加捞扁 困秦...
  38.  */
  39. #define PCIO_BASE 0
  40. /*
  41.  * S3C2410 internal I/O mappings
  42.  *
  43.  * We have the following mapping:
  44.  * phys virt
  45.  * 48000000 e8000000
  46.  */
  47. #define VIO_BASE 0xe8000000 /* virtual start of IO space */
  48. #define PIO_START 0x48000000 /* physical start of IO space */
  49. #define io_p2v(x) ((x) | 0xa0000000)
  50. #define io_v2p(x) ((x) & ~0xa0000000)
  51. #ifndef __ASSEMBLY__
  52. #include <asm/types.h>
  53. /*
  54.  * This __REG() version gives the same results as the one above, except
  55.  * that we are fooling gcc some how so it generates far better and smaller
  56.  * assembly code for access to contigous registers. It's a shame that gcc
  57.  * doesn't guess this by itself
  58.  */
  59. typedef struct { volatile u32 offset[4096]; } __regbase;
  60. #define __REGP(x) ((__regbase *)((x)&~4095))->offset[((x)&4095)>>2]
  61. #define __REG(x) __REGP(io_p2v(x))
  62. /* Let's kick gcc's ass again... */
  63. # define __REG2(x,y)
  64. ( __builtin_constant_p(y) ? (__REG((x) + (y))) 
  65.   : (*(volatile u32 *)((u32)&__REG(x) + (y))) )
  66. #define __PREG(x) (io_v2p((u32)&(x)))
  67. #else /* __ASSEMBLY__ */
  68. # define __REG(x) io_p2v(x)
  69. # define __PREG(x) io_v2p(x)
  70. #endif /* __ASSEMBLY__ */
  71. #include "S3C2410.h"
  72. /*
  73.  * S3C2410 GPIO edge detection for IRQs:
  74.  * IRQs are generated on Falling-Edge, Rising-Edge, both, low level or higg level.
  75.  * This must be called *before* the corresponding IRQ is registered.
  76.  */
  77. #define EXT_LOWLEVEL 0
  78. #define EXT_HIGHLEVEL 1
  79. #define EXT_FALLING_EDGE 2
  80. #define EXT_RISING_EDGE 4
  81. #define EXT_BOTH_EDGES 6
  82. #ifndef __ASSEMBLY__
  83. extern int set_EXT_IRQ_mode(int irq, int edge);
  84. /*
  85.  * Handy routine to set GPIO alternate functions
  86.  */
  87. extern void set_GPIO_mode( int gpio_mode );
  88. #endif
  89. /* Externl clock frequency used by CPU */
  90. #define FIN 12000000
  91. #ifdef CONFIG_S3C2410_SMDK
  92. #include "smdk.h"
  93. #endif
  94. #endif /* __ASM_ARCH_HARDWARE_H */