s3c2410.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * (C) Copyright 2003
  3. * David Müller ELSOFT AG Switzerland. d.mueller@elsoft.ch
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /************************************************
  24. * NAME : s3c2410.h
  25. * Version : 31.3.2003
  26. *
  27. * Based on S3C2410X User's manual Rev 1.1
  28. ************************************************/
  29. #ifndef __S3C2410_H__
  30. #define __S3C2410_H__
  31. #define S3C24X0_UART_CHANNELS 3
  32. #define S3C24X0_SPI_CHANNELS 2
  33. /* S3C2410 only supports 512 Byte HW ECC */
  34. #define S3C2410_ECCSIZE 512
  35. #define S3C2410_ECCBYTES 3
  36. enum s3c24x0_uarts_nr {
  37. S3C24X0_UART0,
  38. S3C24X0_UART1,
  39. S3C24X0_UART2
  40. };
  41. /* S3C2410 device base addresses */
  42. #define S3C24X0_MEMCTL_BASE 0x48000000
  43. #define S3C24X0_USB_HOST_BASE 0x49000000
  44. #define S3C24X0_INTERRUPT_BASE 0x4A000000
  45. #define S3C24X0_DMA_BASE 0x4B000000
  46. #define S3C24X0_CLOCK_POWER_BASE 0x4C000000
  47. #define S3C24X0_LCD_BASE 0x4D000000
  48. #define S3C2410_NAND_BASE 0x4E000000
  49. #define S3C24X0_UART_BASE 0x50000000
  50. #define S3C24X0_TIMER_BASE 0x51000000
  51. #define S3C24X0_USB_DEVICE_BASE 0x52000140
  52. #define S3C24X0_WATCHDOG_BASE 0x53000000
  53. #define S3C24X0_I2C_BASE 0x54000000
  54. #define S3C24X0_I2S_BASE 0x55000000
  55. #define S3C24X0_GPIO_BASE 0x56000000
  56. #define S3C24X0_RTC_BASE 0x57000000
  57. #define S3C2410_ADC_BASE 0x58000000
  58. #define S3C24X0_SPI_BASE 0x59000000
  59. #define S3C2410_SDI_BASE 0x5A000000
  60. /* include common stuff */
  61. #include <asm/arch/s3c24x0.h>
  62. static inline struct s3c24x0_memctl *s3c24x0_get_base_memctl(void)
  63. {
  64. return (struct s3c24x0_memctl *)S3C24X0_MEMCTL_BASE;
  65. }
  66. static inline struct s3c24x0_usb_host *s3c24x0_get_base_usb_host(void)
  67. {
  68. return (struct s3c24x0_usb_host *)S3C24X0_USB_HOST_BASE;
  69. }
  70. static inline struct s3c24x0_interrupt *s3c24x0_get_base_interrupt(void)
  71. {
  72. return (struct s3c24x0_interrupt *)S3C24X0_INTERRUPT_BASE;
  73. }
  74. static inline struct s3c24x0_dmas *s3c24x0_get_base_dmas(void)
  75. {
  76. return (struct s3c24x0_dmas *)S3C24X0_DMA_BASE;
  77. }
  78. static inline struct s3c24x0_clock_power *s3c24x0_get_base_clock_power(void)
  79. {
  80. return (struct s3c24x0_clock_power *)S3C24X0_CLOCK_POWER_BASE;
  81. }
  82. static inline struct s3c24x0_lcd *s3c24x0_get_base_lcd(void)
  83. {
  84. return (struct s3c24x0_lcd *)S3C24X0_LCD_BASE;
  85. }
  86. static inline struct s3c2410_nand *s3c2410_get_base_nand(void)
  87. {
  88. return (struct s3c2410_nand *)S3C2410_NAND_BASE;
  89. }
  90. static inline struct s3c24x0_uart
  91. *s3c24x0_get_base_uart(enum s3c24x0_uarts_nr n)
  92. {
  93. return (struct s3c24x0_uart *)(S3C24X0_UART_BASE + (n * 0x4000));
  94. }
  95. static inline struct s3c24x0_timers *s3c24x0_get_base_timers(void)
  96. {
  97. return (struct s3c24x0_timers *)S3C24X0_TIMER_BASE;
  98. }
  99. static inline struct s3c24x0_usb_device *s3c24x0_get_base_usb_device(void)
  100. {
  101. return (struct s3c24x0_usb_device *)S3C24X0_USB_DEVICE_BASE;
  102. }
  103. static inline struct s3c24x0_watchdog *s3c24x0_get_base_watchdog(void)
  104. {
  105. return (struct s3c24x0_watchdog *)S3C24X0_WATCHDOG_BASE;
  106. }
  107. static inline struct s3c24x0_i2c *s3c24x0_get_base_i2c(void)
  108. {
  109. return (struct s3c24x0_i2c *)S3C24X0_I2C_BASE;
  110. }
  111. static inline struct s3c24x0_i2s *s3c24x0_get_base_i2s(void)
  112. {
  113. return (struct s3c24x0_i2s *)S3C24X0_I2S_BASE;
  114. }
  115. static inline struct s3c24x0_gpio *s3c24x0_get_base_gpio(void)
  116. {
  117. return (struct s3c24x0_gpio *)S3C24X0_GPIO_BASE;
  118. }
  119. static inline struct s3c24x0_rtc *s3c24x0_get_base_rtc(void)
  120. {
  121. return (struct s3c24x0_rtc *)S3C24X0_RTC_BASE;
  122. }
  123. static inline struct s3c2410_adc *s3c2410_get_base_adc(void)
  124. {
  125. return (struct s3c2410_adc *)S3C2410_ADC_BASE;
  126. }
  127. static inline struct s3c24x0_spi *s3c24x0_get_base_spi(void)
  128. {
  129. return (struct s3c24x0_spi *)S3C24X0_SPI_BASE;
  130. }
  131. static inline struct s3c2410_sdi *s3c2410_get_base_sdi(void)
  132. {
  133. return (struct s3c2410_sdi *)S3C2410_SDI_BASE;
  134. }
  135. #endif /*__S3C2410_H__*/