mx1fs2.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Copyright (C) 2004 Sascha Hauer, Pengutronix
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  17. * MA 02111-1307 USA
  18. *
  19. */
  20. #include <common.h>
  21. #include <asm/arch/imx-regs.h>
  22. DECLARE_GLOBAL_DATA_PTR;
  23. #define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
  24. extern void imx_gpio_mode(int gpio_mode);
  25. static void logo_init(void)
  26. {
  27. imx_gpio_mode(PD15_PF_LD0);
  28. imx_gpio_mode(PD16_PF_LD1);
  29. imx_gpio_mode(PD17_PF_LD2);
  30. imx_gpio_mode(PD18_PF_LD3);
  31. imx_gpio_mode(PD19_PF_LD4);
  32. imx_gpio_mode(PD20_PF_LD5);
  33. imx_gpio_mode(PD21_PF_LD6);
  34. imx_gpio_mode(PD22_PF_LD7);
  35. imx_gpio_mode(PD23_PF_LD8);
  36. imx_gpio_mode(PD24_PF_LD9);
  37. imx_gpio_mode(PD25_PF_LD10);
  38. imx_gpio_mode(PD26_PF_LD11);
  39. imx_gpio_mode(PD27_PF_LD12);
  40. imx_gpio_mode(PD28_PF_LD13);
  41. imx_gpio_mode(PD29_PF_LD14);
  42. imx_gpio_mode(PD30_PF_LD15);
  43. imx_gpio_mode(PD14_PF_FLM_VSYNC);
  44. imx_gpio_mode(PD13_PF_LP_HSYNC);
  45. imx_gpio_mode(PD6_PF_LSCLK);
  46. imx_gpio_mode(GPIO_PORTD | GPIO_OUT | GPIO_DR);
  47. imx_gpio_mode(PD11_PF_CONTRAST);
  48. imx_gpio_mode(PD10_PF_SPL_SPR);
  49. LCDC_RMCR = 0x00000000;
  50. LCDC_PCR = PCR_COLOR | PCR_PBSIZ_8 | PCR_BPIX_16 | PCR_PCD(5);
  51. LCDC_HCR = HCR_H_WIDTH(2);
  52. LCDC_VCR = VCR_V_WIDTH(2);
  53. LCDC_PWMR = 0x00000380; /* contrast to 0x80 middle (is best !!!) */
  54. LCDC_SSA = 0x10040000; /* image in flash */
  55. LCDC_SIZE = SIZE_XMAX(320) | SIZE_YMAX(240); /* screen size */
  56. LCDC_VPW = 0x000000A0; /* Virtual Page Width Register */
  57. LCDC_POS = 0x00000000; /* panning offset 0 (0 pixel offset) */
  58. /* disable Cursor */
  59. LCDC_CPOS = 0x00000000;
  60. /* fixed burst length */
  61. LCDC_DMACR = DMACR_BURST | DMACR_HM(8) | DMACR_TM(2);
  62. /* enable LCD */
  63. DR(3) |= 0x00001000;
  64. LCDC_RMCR = RMCR_LCDC_EN;
  65. }
  66. int
  67. board_init(void)
  68. {
  69. gd->bd->bi_arch_number = MACH_TYPE_MX1FS2;
  70. gd->bd->bi_boot_params = 0x08000100;
  71. serial_init();
  72. logo_init();
  73. return 0;
  74. }
  75. int
  76. dram_init(void)
  77. {
  78. #if ( CONFIG_NR_DRAM_BANKS > 0 )
  79. gd->bd->bi_dram[0].start = MX1FS2_SDRAM_1;
  80. gd->bd->bi_dram[0].size = MX1FS2_SDRAM_1_SIZE;
  81. #endif
  82. return 0;
  83. }
  84. /**
  85. * show_boot_progress: - indicate state of the boot process
  86. *
  87. * @param status: Status number - see README for details.
  88. *
  89. */
  90. void
  91. show_boot_progress(int status)
  92. {
  93. /* We use this as a hook to disable serial ports just before booting
  94. * This way we suppress the "uncompressing linux..." message
  95. */
  96. #ifdef CONFIG_SILENT_CONSOLE
  97. if( status == 8) {
  98. if( getenv("silent") != NULL ) {
  99. *(volatile unsigned long *)0x206080 &= ~1;
  100. *(volatile unsigned long *)0x207080 &= ~1;
  101. }
  102. }
  103. #endif
  104. return;
  105. }