innokom.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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 <netdev.h>
  27. #include <asm/arch/pxa-regs.h>
  28. #include <asm/mach-types.h>
  29. #include <asm/io.h>
  30. DECLARE_GLOBAL_DATA_PTR;
  31. #ifdef CONFIG_SHOW_BOOT_PROGRESS
  32. # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
  33. #else
  34. # define SHOW_BOOT_PROGRESS(arg)
  35. #endif
  36. /**
  37. * i2c_init_board - reset i2c bus. When the board is powercycled during a
  38. * bus transfer it might hang; for details see doc/I2C_Edge_Conditions.
  39. * The Innokom board has GPIO70 connected to SCLK which can be toggled
  40. * until all chips think that their current cycles are finished.
  41. */
  42. int i2c_init_board(void)
  43. {
  44. int i, icr;
  45. /* disable I2C controller first, otherwhise it thinks we want to */
  46. /* talk to the slave port... */
  47. icr = readl(ICR);
  48. writel(readl(ICR) & ~(ICR_SCLE | ICR_IUE), ICR);
  49. /* set gpio pin low _before_ we change direction to output */
  50. writel(GPIO_bit(70), GPCR(70));
  51. /* now toggle between output=low and high-impedance */
  52. for (i = 0; i < 20; i++) {
  53. writel(readl(GPDR(70)) | GPIO_bit(70), GPDR(70)); /* output */
  54. udelay(10);
  55. writel(readl(GPDR(70)) & ~GPIO_bit(70), GPDR(70)); /* input */
  56. udelay(10);
  57. }
  58. writel(icr, ICR);
  59. return 0;
  60. }
  61. /**
  62. * misc_init_r: - misc initialisation routines
  63. */
  64. int misc_init_r(void)
  65. {
  66. char *str;
  67. /* determine if the software update key is pressed during startup */
  68. if (readl(GPLR0) & 0x00000800) {
  69. printf("using bootcmd_normal (sw-update button not pressed)\n");
  70. str = getenv("bootcmd_normal");
  71. } else {
  72. printf("using bootcmd_update (sw-update button pressed)\n");
  73. str = getenv("bootcmd_update");
  74. }
  75. setenv("bootcmd",str);
  76. return 0;
  77. }
  78. /**
  79. * board_init: - setup some data structures
  80. *
  81. * @return: 0 in case of success
  82. */
  83. int board_init (void)
  84. {
  85. /* We have RAM, disable cache */
  86. dcache_disable();
  87. icache_disable();
  88. gd->bd->bi_arch_number = MACH_TYPE_INNOKOM;
  89. gd->bd->bi_boot_params = 0xa0000100;
  90. gd->bd->bi_baudrate = CONFIG_BAUDRATE;
  91. return 0;
  92. }
  93. extern void pxa_dram_init(void);
  94. int dram_init(void)
  95. {
  96. pxa_dram_init();
  97. gd->ram_size = PHYS_SDRAM_1_SIZE;
  98. return 0;
  99. }
  100. void dram_init_banksize(void)
  101. {
  102. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  103. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  104. }
  105. /**
  106. * innokom_set_led: - switch LEDs on or off
  107. *
  108. * @param led: LED to switch (0,1,2)
  109. * @param state: switch on (1) or off (0)
  110. */
  111. void innokom_set_led(int led, int state)
  112. {
  113. switch(led) {
  114. /*
  115. case 0: if (state==1) {
  116. GPCR0 |= CSB226_USER_LED0;
  117. } else if (state==0) {
  118. GPSR0 |= CSB226_USER_LED0;
  119. }
  120. break;
  121. case 1: if (state==1) {
  122. GPCR0 |= CSB226_USER_LED1;
  123. } else if (state==0) {
  124. GPSR0 |= CSB226_USER_LED1;
  125. }
  126. break;
  127. case 2: if (state==1) {
  128. GPCR0 |= CSB226_USER_LED2;
  129. } else if (state==0) {
  130. GPSR0 |= CSB226_USER_LED2;
  131. }
  132. break;
  133. */
  134. }
  135. return;
  136. }
  137. /**
  138. * show_boot_progress: - indicate state of the boot process
  139. *
  140. * @param status: Status number - see README for details.
  141. *
  142. * The CSB226 does only have 3 LEDs, so we switch them on at the most
  143. * important states (1, 5, 15).
  144. */
  145. void show_boot_progress (int status)
  146. {
  147. switch(status) {
  148. /*
  149. case 1: csb226_set_led(0,1); break;
  150. case 5: csb226_set_led(1,1); break;
  151. case 15: csb226_set_led(2,1); break;
  152. */
  153. }
  154. return;
  155. }
  156. #ifdef CONFIG_CMD_NET
  157. int board_eth_init(bd_t *bis)
  158. {
  159. int rc = 0;
  160. #ifdef CONFIG_SMC91111
  161. rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
  162. #endif
  163. return rc;
  164. }
  165. #endif