sys_proto.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * (C) Copyright 2004-2008
  3. * Texas Instruments, <www.ti.com>
  4. * Richard Woodruff <r-woodruff2@ti.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  19. * MA 02111-1307 USA
  20. */
  21. #ifndef _SYS_PROTO_H_
  22. #define _SYS_PROTO_H_
  23. typedef struct {
  24. u32 mtype;
  25. char *board_string;
  26. char *nand_string;
  27. } omap3_sysinfo;
  28. struct emu_hal_params {
  29. u32 num_params;
  30. u32 param1;
  31. };
  32. void prcm_init(void);
  33. void per_clocks_enable(void);
  34. void ehci_clocks_enable(void);
  35. void memif_init(void);
  36. void sdrc_init(void);
  37. void do_sdrc_init(u32, u32);
  38. void get_board_mem_timings(u32 *mcfg, u32 *ctrla, u32 *ctrlb, u32 *rfr_ctrl,
  39. u32 *mr);
  40. void identify_nand_chip(int *mfr, int *id);
  41. void emif4_init(void);
  42. void gpmc_init(void);
  43. void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
  44. u32 size);
  45. void watchdog_init(void);
  46. void set_muxconf_regs(void);
  47. u32 get_cpu_family(void);
  48. u32 get_cpu_rev(void);
  49. u32 get_sku_id(void);
  50. u32 get_sysboot_value(void);
  51. u32 is_gpmc_muxed(void);
  52. u32 get_gpmc0_type(void);
  53. u32 get_gpmc0_width(void);
  54. u32 is_running_in_sdram(void);
  55. u32 is_running_in_sram(void);
  56. u32 is_running_in_flash(void);
  57. u32 get_device_type(void);
  58. void secureworld_exit(void);
  59. void try_unlock_memory(void);
  60. u32 get_boot_type(void);
  61. void invalidate_dcache(u32);
  62. void sr32(void *, u32, u32, u32);
  63. u32 wait_on_value(u32, u32, void *, u32);
  64. void sdelay(unsigned long);
  65. void make_cs1_contiguous(void);
  66. void omap_nand_switch_ecc(int);
  67. void power_init_r(void);
  68. void dieid_num_r(void);
  69. void do_omap3_emu_romcode_call(u32 service_id, u32 parameters);
  70. void omap3_gp_romcode_call(u32 service_id, u32 parameter);
  71. u32 warm_reset(void);
  72. #endif