csb226.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. DECLARE_GLOBAL_DATA_PTR;
  29. #ifdef CONFIG_SHOW_BOOT_PROGRESS
  30. # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
  31. #else
  32. # define SHOW_BOOT_PROGRESS(arg)
  33. #endif
  34. /**
  35. * misc_init_r: - misc initialisation routines
  36. */
  37. int misc_init_r(void)
  38. {
  39. #if 0
  40. uchar *str;
  41. /* determine if the software update key is pressed during startup */
  42. /* not ported yet... */
  43. if (GPLR0 & 0x00000800) {
  44. printf("using bootcmd_normal (sw-update button not pressed)\n");
  45. str = getenv("bootcmd_normal");
  46. } else {
  47. printf("using bootcmd_update (sw-update button pressed)\n");
  48. str = getenv("bootcmd_update");
  49. }
  50. setenv("bootcmd",str);
  51. #endif
  52. return 0;
  53. }
  54. /**
  55. * board_init: - setup some data structures
  56. *
  57. * @return: 0 in case of success
  58. */
  59. int board_init (void)
  60. {
  61. /* memory and cpu-speed are setup before relocation */
  62. /* so we do _nothing_ here */
  63. /* arch number of CSB226 board */
  64. gd->bd->bi_arch_number = MACH_TYPE_CSB226;
  65. /* adress of boot parameters */
  66. gd->bd->bi_boot_params = 0xa0000100;
  67. return 0;
  68. }
  69. /**
  70. * dram_init: - setup dynamic RAM
  71. *
  72. * @return: 0 in case of success
  73. */
  74. int dram_init (void)
  75. {
  76. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  77. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  78. return 0;
  79. }
  80. /**
  81. * csb226_set_led: - switch LEDs on or off
  82. *
  83. * @param led: LED to switch (0,1,2)
  84. * @param state: switch on (1) or off (0)
  85. */
  86. void csb226_set_led(int led, int state)
  87. {
  88. switch(led) {
  89. case 0: if (state==1) {
  90. GPCR0 |= CSB226_USER_LED0;
  91. } else if (state==0) {
  92. GPSR0 |= CSB226_USER_LED0;
  93. }
  94. break;
  95. case 1: if (state==1) {
  96. GPCR0 |= CSB226_USER_LED1;
  97. } else if (state==0) {
  98. GPSR0 |= CSB226_USER_LED1;
  99. }
  100. break;
  101. case 2: if (state==1) {
  102. GPCR0 |= CSB226_USER_LED2;
  103. } else if (state==0) {
  104. GPSR0 |= CSB226_USER_LED2;
  105. }
  106. break;
  107. }
  108. return;
  109. }
  110. /**
  111. * show_boot_progress: - indicate state of the boot process
  112. *
  113. * @param status: Status number - see README for details.
  114. *
  115. * The CSB226 does only have 3 LEDs, so we switch them on at the most
  116. * important states (1, 5, 15).
  117. */
  118. void show_boot_progress (int status)
  119. {
  120. switch(status) {
  121. case 1: csb226_set_led(0,1); break;
  122. case 5: csb226_set_led(1,1); break;
  123. case 15: csb226_set_led(2,1); break;
  124. }
  125. return;
  126. }
  127. #ifdef CONFIG_CMD_NET
  128. int board_eth_init(bd_t *bis)
  129. {
  130. int rc = 0;
  131. #ifdef CONFIG_CS8900
  132. rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
  133. #endif
  134. return rc;
  135. }
  136. #endif