s3c2400.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * (C) Copyright 2003
  3. * David Müller ELSOFT AG Switzerland. d.mueller@elsoft.ch
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. /************************************************
  8. * NAME : s3c2400.h
  9. * Version : 31.3.2003
  10. *
  11. * Based on S3C2400X User's manual Rev 1.1
  12. ************************************************/
  13. #ifndef __S3C2400_H__
  14. #define __S3C2400_H__
  15. #define S3C24X0_UART_CHANNELS 2
  16. #define S3C24X0_SPI_CHANNELS 1
  17. #define PALETTE (0x14A00400) /* SJS */
  18. enum s3c24x0_uarts_nr {
  19. S3C24X0_UART0,
  20. S3C24X0_UART1,
  21. };
  22. /*S3C2400 device base addresses */
  23. #define S3C24X0_MEMCTL_BASE 0x14000000
  24. #define S3C24X0_USB_HOST_BASE 0x14200000
  25. #define S3C24X0_INTERRUPT_BASE 0x14400000
  26. #define S3C24X0_DMA_BASE 0x14600000
  27. #define S3C24X0_CLOCK_POWER_BASE 0x14800000
  28. #define S3C24X0_LCD_BASE 0x14A00000
  29. #define S3C24X0_UART_BASE 0x15000000
  30. #define S3C24X0_TIMER_BASE 0x15100000
  31. #define S3C24X0_USB_DEVICE_BASE 0x15200140
  32. #define S3C24X0_WATCHDOG_BASE 0x15300000
  33. #define S3C24X0_I2C_BASE 0x15400000
  34. #define S3C24X0_I2S_BASE 0x15508000
  35. #define S3C24X0_GPIO_BASE 0x15600000
  36. #define S3C24X0_RTC_BASE 0x15700000
  37. #define S3C24X0_ADC_BASE 0x15800000
  38. #define S3C24X0_SPI_BASE 0x15900000
  39. #define S3C2400_MMC_BASE 0x15A00000
  40. /* include common stuff */
  41. #include <asm/arch/s3c24x0.h>
  42. static inline struct s3c24x0_memctl *s3c24x0_get_base_memctl(void)
  43. {
  44. return (struct s3c24x0_memctl *)S3C24X0_MEMCTL_BASE;
  45. }
  46. static inline struct s3c24x0_usb_host *s3c24x0_get_base_usb_host(void)
  47. {
  48. return (struct s3c24x0_usb_host *)S3C24X0_USB_HOST_BASE;
  49. }
  50. static inline struct s3c24x0_interrupt *s3c24x0_get_base_interrupt(void)
  51. {
  52. return (struct s3c24x0_interrupt *)S3C24X0_INTERRUPT_BASE;
  53. }
  54. static inline struct s3c24x0_dmas *s3c24x0_get_base_dmas(void)
  55. {
  56. return (struct s3c24x0_dmas *)S3C24X0_DMA_BASE;
  57. }
  58. static inline struct s3c24x0_clock_power *s3c24x0_get_base_clock_power(void)
  59. {
  60. return (struct s3c24x0_clock_power *)S3C24X0_CLOCK_POWER_BASE;
  61. }
  62. static inline struct s3c24x0_lcd *s3c24x0_get_base_lcd(void)
  63. {
  64. return (struct s3c24x0_lcd *)S3C24X0_LCD_BASE;
  65. }
  66. static inline struct s3c24x0_uart
  67. *s3c24x0_get_base_uart(enum s3c24x0_uarts_nr n)
  68. {
  69. return (struct s3c24x0_uart *)(S3C24X0_UART_BASE + (n * 0x4000));
  70. }
  71. static inline struct s3c24x0_timers *s3c24x0_get_base_timers(void)
  72. {
  73. return (struct s3c24x0_timers *)S3C24X0_TIMER_BASE;
  74. }
  75. static inline struct s3c24x0_usb_device *s3c24x0_get_base_usb_device(void)
  76. {
  77. return (struct s3c24x0_usb_device *)S3C24X0_USB_DEVICE_BASE;
  78. }
  79. static inline struct s3c24x0_watchdog *s3c24x0_get_base_watchdog(void)
  80. {
  81. return (struct s3c24x0_watchdog *)S3C24X0_WATCHDOG_BASE;
  82. }
  83. static inline struct s3c24x0_i2c *s3c24x0_get_base_i2c(void)
  84. {
  85. return (struct s3c24x0_i2c *)S3C24X0_I2C_BASE;
  86. }
  87. static inline struct s3c24x0_i2s *s3c24x0_get_base_i2s(void)
  88. {
  89. return (struct s3c24x0_i2s *)S3C24X0_I2S_BASE;
  90. }
  91. static inline struct s3c24x0_gpio *s3c24x0_get_base_gpio(void)
  92. {
  93. return (struct s3c24x0_gpio *)S3C24X0_GPIO_BASE;
  94. }
  95. static inline struct s3c24x0_rtc *s3c24x0_get_base_rtc(void)
  96. {
  97. return (struct s3c24x0_rtc *)S3C24X0_RTC_BASE;
  98. }
  99. static inline struct s3c2400_adc *s3c2400_get_base_adc(void)
  100. {
  101. return (struct s3c2400_adc *)S3C24X0_ADC_BASE;
  102. }
  103. static inline struct s3c24x0_spi *s3c24x0_get_base_spi(void)
  104. {
  105. return (struct s3c24x0_spi *)S3C24X0_SPI_BASE;
  106. }
  107. static inline struct s3c2400_mmc *s3c2400_get_base_mmc(void)
  108. {
  109. return (struct s3c2400_mmc *)S3C2400_MMC_BASE;
  110. }
  111. #endif /*__S3C2400_H__*/