sys_proto.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * (C) Copyright 2004-2008
  3. * Texas Instruments, <www.ti.com>
  4. * Richard Woodruff <r-woodruff2@ti.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef _SYS_PROTO_H_
  9. #define _SYS_PROTO_H_
  10. #include <linux/mtd/omap_gpmc.h>
  11. typedef struct {
  12. u32 mtype;
  13. char *board_string;
  14. char *nand_string;
  15. } omap3_sysinfo;
  16. struct emu_hal_params {
  17. u32 num_params;
  18. u32 param1;
  19. };
  20. /* Board SDRC timing values */
  21. struct board_sdrc_timings {
  22. u32 mcfg;
  23. u32 ctrla;
  24. u32 ctrlb;
  25. u32 rfr_ctrl;
  26. u32 mr;
  27. };
  28. void prcm_init(void);
  29. void per_clocks_enable(void);
  30. void ehci_clocks_enable(void);
  31. void memif_init(void);
  32. void sdrc_init(void);
  33. void do_sdrc_init(u32, u32);
  34. void get_board_mem_timings(struct board_sdrc_timings *timings);
  35. void identify_nand_chip(int *mfr, int *id);
  36. void emif4_init(void);
  37. void gpmc_init(void);
  38. void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
  39. u32 size);
  40. void watchdog_init(void);
  41. void set_muxconf_regs(void);
  42. u32 get_cpu_family(void);
  43. u32 get_cpu_rev(void);
  44. u32 get_sku_id(void);
  45. u32 get_sysboot_value(void);
  46. u32 is_gpmc_muxed(void);
  47. u32 get_gpmc0_type(void);
  48. u32 get_gpmc0_width(void);
  49. u32 is_running_in_sdram(void);
  50. u32 is_running_in_sram(void);
  51. u32 is_running_in_flash(void);
  52. u32 get_device_type(void);
  53. void secureworld_exit(void);
  54. void try_unlock_memory(void);
  55. u32 get_boot_type(void);
  56. void invalidate_dcache(u32);
  57. void sr32(void *, u32, u32, u32);
  58. u32 wait_on_value(u32, u32, void *, u32);
  59. void sdelay(unsigned long);
  60. void make_cs1_contiguous(void);
  61. void omap_nand_switch_ecc(uint32_t, uint32_t);
  62. void power_init_r(void);
  63. void dieid_num_r(void);
  64. void do_omap3_emu_romcode_call(u32 service_id, u32 parameters);
  65. void omap3_gp_romcode_call(u32 service_id, u32 parameter);
  66. u32 warm_reset(void);
  67. #endif