taihu.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /*
  2. * (C) Copyright 2000-2005
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * (C) Copyright 2005-2007
  6. * Beijing UD Technology Co., Ltd., taihusupport@amcc.com
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <common.h>
  27. #include <command.h>
  28. #include <asm/processor.h>
  29. #include <asm/io.h>
  30. #include <spi.h>
  31. #include <netdev.h>
  32. #include <asm/gpio.h>
  33. extern int lcd_init(void);
  34. /*
  35. * board_early_init_f
  36. */
  37. int board_early_init_f(void)
  38. {
  39. lcd_init();
  40. mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
  41. mtdcr(UIC0ER, 0x00000000); /* disable all ints */
  42. mtdcr(UIC0CR, 0x00000000);
  43. mtdcr(UIC0PR, 0xFFFF7F00); /* set int polarities */
  44. mtdcr(UIC0TR, 0x00000000); /* set int trigger levels */
  45. mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
  46. mtdcr(UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest priority */
  47. mtebc(PB3AP, CONFIG_SYS_EBC_PB3AP); /* memory bank 3 (CPLD_LCM) initialization */
  48. mtebc(PB3CR, CONFIG_SYS_EBC_PB3CR);
  49. /*
  50. * Configure CPC0_PCI to enable PerWE as output
  51. * and enable the internal PCI arbiter
  52. */
  53. mtdcr(CPC0_PCI, CPC0_PCI_SPE | CPC0_PCI_HOST_CFG_EN | CPC0_PCI_ARBIT_EN);
  54. return 0;
  55. }
  56. /*
  57. * Check Board Identity:
  58. */
  59. int checkboard(void)
  60. {
  61. char *s = getenv("serial#");
  62. puts("Board: Taihu - AMCC PPC405EP Evaluation Board");
  63. if (s != NULL) {
  64. puts(", serial# ");
  65. puts(s);
  66. }
  67. putc('\n');
  68. return 0;
  69. }
  70. static int do_sw_stat(cmd_tbl_t* cmd_tp, int flags, int argc, char * const argv[])
  71. {
  72. char stat;
  73. int i;
  74. stat = in_8((u8 *) CPLD_REG0_ADDR);
  75. printf("SW2 status: ");
  76. for (i=0; i<4; i++) /* 4-position */
  77. printf("%d:%s ", i, stat & (0x08 >> i)?"on":"off");
  78. printf("\n");
  79. return 0;
  80. }
  81. U_BOOT_CMD (
  82. sw2_stat, 1, 1, do_sw_stat,
  83. "show status of switch 2",
  84. ""
  85. );
  86. static int do_led_ctl(cmd_tbl_t* cmd_tp, int flags, int argc, char * const argv[])
  87. {
  88. int led_no;
  89. if (argc != 3)
  90. return cmd_usage(cmd_tp);
  91. led_no = simple_strtoul(argv[1], NULL, 16);
  92. if (led_no != 1 && led_no != 2)
  93. return cmd_usage(cmd_tp);
  94. if (strcmp(argv[2],"off") == 0x0) {
  95. if (led_no == 1)
  96. gpio_write_bit(30, 1);
  97. else
  98. gpio_write_bit(31, 1);
  99. } else if (strcmp(argv[2],"on") == 0x0) {
  100. if (led_no == 1)
  101. gpio_write_bit(30, 0);
  102. else
  103. gpio_write_bit(31, 0);
  104. } else {
  105. return cmd_usage(cmd_tp);
  106. }
  107. return 0;
  108. }
  109. U_BOOT_CMD (
  110. led_ctl, 3, 1, do_led_ctl,
  111. "make led 1 or 2 on or off",
  112. "<led_no> <on/off> - make led <led_no> on/off,\n"
  113. "\tled_no is 1 or 2"
  114. );
  115. #define SPI_CS_GPIO0 0
  116. #define SPI_SCLK_GPIO14 14
  117. #define SPI_DIN_GPIO15 15
  118. #define SPI_DOUT_GPIO16 16
  119. void spi_scl(int bit)
  120. {
  121. gpio_write_bit(SPI_SCLK_GPIO14, bit);
  122. }
  123. void spi_sda(int bit)
  124. {
  125. gpio_write_bit(SPI_DOUT_GPIO16, bit);
  126. }
  127. unsigned char spi_read(void)
  128. {
  129. return (unsigned char)gpio_read_in_bit(SPI_DIN_GPIO15);
  130. }
  131. int spi_cs_is_valid(unsigned int bus, unsigned int cs)
  132. {
  133. return bus == 0 && cs == 0;
  134. }
  135. void spi_cs_activate(struct spi_slave *slave)
  136. {
  137. gpio_write_bit(SPI_CS_GPIO0, 1);
  138. }
  139. void spi_cs_deactivate(struct spi_slave *slave)
  140. {
  141. gpio_write_bit(SPI_CS_GPIO0, 0);
  142. }
  143. #ifdef CONFIG_PCI
  144. static unsigned char int_lines[32] = {
  145. 29, 30, 27, 28, 29, 30, 25, 27,
  146. 29, 30, 27, 28, 29, 30, 27, 28,
  147. 29, 30, 27, 28, 29, 30, 27, 28,
  148. 29, 30, 27, 28, 29, 30, 27, 28};
  149. static void taihu_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
  150. {
  151. unsigned char int_line = int_lines[PCI_DEV(dev) & 31];
  152. pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, int_line);
  153. }
  154. int pci_pre_init(struct pci_controller *hose)
  155. {
  156. hose->fixup_irq = taihu_pci_fixup_irq;
  157. return 1;
  158. }
  159. #endif /* CONFIG_PCI */
  160. int board_eth_init(bd_t *bis)
  161. {
  162. cpu_eth_init(bis);
  163. return pci_eth_init(bis);
  164. }