~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-davinci/include/mach/hardware.h

Version: ~ [ linux-6.6-rc4 ] ~ [ linux-6.5.5 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.55 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.133 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.197 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.257 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.295 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.326 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /*
  2  * Hardware definitions common to all DaVinci family processors
  3  *
  4  * Author: Kevin Hilman, Deep Root Systems, LLC
  5  *
  6  * 2007 (c) Deep Root Systems, LLC. This file is licensed under
  7  * the terms of the GNU General Public License version 2. This program
  8  * is licensed "as is" without any warranty of any kind, whether express
  9  * or implied.
 10  */
 11 #ifndef __ASM_ARCH_HARDWARE_H
 12 #define __ASM_ARCH_HARDWARE_H
 13 
 14 /*
 15  * Before you add anything to ths file:
 16  *
 17  * This header is for defines common to ALL DaVinci family chips.
 18  * Anything that is chip specific should go in <chipname>.h,
 19  * and the chip/board init code should then explicitly include
 20  * <chipname>.h
 21  */
 22 #define DAVINCI_SYSTEM_MODULE_BASE        0x01C40000
 23 
 24 /* System control register offsets */
 25 #define DM64XX_VDD3P3V_PWDN     0x48
 26 
 27 /*
 28  * I/O mapping
 29  */
 30 #define IO_PHYS                         0x01c00000
 31 #define IO_OFFSET                       0xfd000000 /* Virtual IO = 0xfec00000 */
 32 #define IO_SIZE                         0x00400000
 33 #define IO_VIRT                         (IO_PHYS + IO_OFFSET)
 34 #define io_v2p(va)                      ((va) - IO_OFFSET)
 35 #define __IO_ADDRESS(x)                 ((x) + IO_OFFSET)
 36 #define IO_ADDRESS(pa)                  IOMEM(__IO_ADDRESS(pa))
 37 
 38 #ifdef __ASSEMBLER__
 39 #define IOMEM(x)                        x
 40 #else
 41 #define IOMEM(x)                        ((void __force __iomem *)(x))
 42 #endif
 43 
 44 #endif /* __ASM_ARCH_HARDWARE_H */
 45 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

osdn.jp