innokom.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * (C) Copyright 2002
  3. * Robert Schwebel, Pengutronix, r.schwebel@pengutronix.de
  4. * Kyle Harris, Nexus Technologies, Inc., kharris@nexus-tech.net
  5. * Marius Groeger, Sysgo Real-Time Solutions GmbH, mgroeger@sysgo.de
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <asm/arch/pxa-regs.h>
  27. #include <asm/mach-types.h>
  28. #ifdef CONFIG_SHOW_BOOT_PROGRESS
  29. # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
  30. #else
  31. # define SHOW_BOOT_PROGRESS(arg)
  32. #endif
  33. /**
  34. * i2c_init_board - reset i2c bus. When the board is powercycled during a
  35. * bus transfer it might hang; for details see doc/I2C_Edge_Conditions.
  36. * The Innokom board has GPIO70 connected to SCLK which can be toggled
  37. * until all chips think that their current cycles are finished.
  38. */
  39. int i2c_init_board(void)
  40. {
  41. int i;
  42. /* set gpio pin to output */
  43. GPDR(70) |= GPIO_bit(70);
  44. for (i = 0; i < 11; i++) {
  45. GPCR(70) = GPIO_bit(70);
  46. udelay(10);
  47. GPSR(70) = GPIO_bit(70);
  48. udelay(10);
  49. }
  50. /* set gpio pin to input */
  51. GPDR(70) &= ~GPIO_bit(70);
  52. return 0;
  53. }
  54. /**
  55. * misc_init_r: - misc initialisation routines
  56. */
  57. int misc_init_r(void)
  58. {
  59. uchar *str;
  60. /* determine if the software update key is pressed during startup */
  61. if (GPLR0 & 0x00000800) {
  62. printf("using bootcmd_normal (sw-update button not pressed)\n");
  63. str = getenv("bootcmd_normal");
  64. } else {
  65. printf("using bootcmd_update (sw-update button pressed)\n");
  66. str = getenv("bootcmd_update");
  67. }
  68. setenv("bootcmd",str);
  69. return 0;
  70. }
  71. /**
  72. * board_init: - setup some data structures
  73. *
  74. * @return: 0 in case of success
  75. */
  76. int board_init (void)
  77. {
  78. DECLARE_GLOBAL_DATA_PTR;
  79. /* memory and cpu-speed are setup before relocation */
  80. /* so we do _nothing_ here */
  81. /* arch number of Innokom board */
  82. gd->bd->bi_arch_number = MACH_TYPE_INNOKOM;
  83. /* adress of boot parameters */
  84. gd->bd->bi_boot_params = 0xa0000100;
  85. return 0;
  86. }
  87. /**
  88. * dram_init: - setup dynamic RAM
  89. *
  90. * @return: 0 in case of success
  91. */
  92. int dram_init (void)
  93. {
  94. DECLARE_GLOBAL_DATA_PTR;
  95. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  96. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  97. return 0;
  98. }
  99. /**
  100. * innokom_set_led: - switch LEDs on or off
  101. *
  102. * @param led: LED to switch (0,1,2)
  103. * @param state: switch on (1) or off (0)
  104. */
  105. void innokom_set_led(int led, int state)
  106. {
  107. switch(led) {
  108. /*
  109. case 0: if (state==1) {
  110. GPCR0 |= CSB226_USER_LED0;
  111. } else if (state==0) {
  112. GPSR0 |= CSB226_USER_LED0;
  113. }
  114. break;
  115. case 1: if (state==1) {
  116. GPCR0 |= CSB226_USER_LED1;
  117. } else if (state==0) {
  118. GPSR0 |= CSB226_USER_LED1;
  119. }
  120. break;
  121. case 2: if (state==1) {
  122. GPCR0 |= CSB226_USER_LED2;
  123. } else if (state==0) {
  124. GPSR0 |= CSB226_USER_LED2;
  125. }
  126. break;
  127. */
  128. }
  129. return;
  130. }
  131. /**
  132. * show_boot_progress: - indicate state of the boot process
  133. *
  134. * @param status: Status number - see README for details.
  135. *
  136. * The CSB226 does only have 3 LEDs, so we switch them on at the most
  137. * important states (1, 5, 15).
  138. */
  139. void show_boot_progress (int status)
  140. {
  141. switch(status) {
  142. /*
  143. case 1: csb226_set_led(0,1); break;
  144. case 5: csb226_set_led(1,1); break;
  145. case 15: csb226_set_led(2,1); break;
  146. */
  147. }
  148. return;
  149. }