sonata.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
  3. *
  4. * Parts are shamelessly stolen from various TI sources, original copyright
  5. * follows:
  6. * -----------------------------------------------------------------
  7. *
  8. * Copyright (C) 2004 Texas Instruments.
  9. *
  10. * ----------------------------------------------------------------------------
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (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., 675 Mass Ave, Cambridge, MA 02139, USA.
  24. * ----------------------------------------------------------------------------
  25. */
  26. #include <common.h>
  27. #include <asm/arch/hardware.h>
  28. #include <asm/arch/emac_defs.h>
  29. #include "../common/psc.h"
  30. #include "../common/misc.h"
  31. DECLARE_GLOBAL_DATA_PTR;
  32. int board_init(void)
  33. {
  34. /* arch number of the board */
  35. gd->bd->bi_arch_number = MACH_TYPE_SONATA;
  36. /* address of boot parameters */
  37. gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
  38. /* Workaround for TMS320DM6446 errata 1.3.22 */
  39. REG(PSC_SILVER_BULLET) = 0;
  40. /* Power on required peripherals */
  41. lpsc_on(DAVINCI_LPSC_EMAC);
  42. lpsc_on(DAVINCI_LPSC_EMAC_WRAPPER);
  43. lpsc_on(DAVINCI_LPSC_MDIO);
  44. lpsc_on(DAVINCI_LPSC_I2C);
  45. lpsc_on(DAVINCI_LPSC_UART0);
  46. lpsc_on(DAVINCI_LPSC_TIMER1);
  47. lpsc_on(DAVINCI_LPSC_GPIO);
  48. #if !defined(CONFIG_SYS_USE_DSPLINK)
  49. /* Powerup the DSP */
  50. dsp_on();
  51. #endif /* CONFIG_SYS_USE_DSPLINK */
  52. /* Bringup UART0 out of reset */
  53. REG(UART0_PWREMU_MGMT) = 0x0000e003;
  54. /* Enable GIO3.3V cells used for EMAC */
  55. REG(VDD3P3V_PWDN) = 0;
  56. /* Enable UART0 MUX lines */
  57. REG(PINMUX1) |= 1;
  58. /* Enable EMAC and AEMIF pins */
  59. REG(PINMUX0) = 0x80000c1f;
  60. /* Enable I2C pin Mux */
  61. REG(PINMUX1) |= (1 << 7);
  62. /* Set the Bus Priority Register to appropriate value */
  63. REG(VBPR) = 0x20;
  64. timer_init();
  65. return(0);
  66. }
  67. int misc_init_r(void)
  68. {
  69. uint8_t eeprom_enetaddr[6];
  70. dv_display_clk_infos();
  71. /* Read Ethernet MAC address from EEPROM if available. */
  72. if (dvevm_read_mac_address(eeprom_enetaddr))
  73. dv_configure_mac_address(eeprom_enetaddr);
  74. if (!eth_hw_init())
  75. printf("ethernet init failed!\n");
  76. return(0);
  77. }