sys_proto.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * (C) Copyright 2009
  3. * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _SYS_PROTO_H_
  8. #define _SYS_PROTO_H_
  9. #include <asm/imx-common/regs-common.h>
  10. #include <common.h>
  11. #include "../arch-imx/cpu.h"
  12. #define soc_rev() (get_cpu_rev() & 0xFF)
  13. #define is_soc_rev(rev) (soc_rev() == rev)
  14. /* returns MXC_CPU_ value */
  15. #define cpu_type(rev) (((rev) >> 12) & 0xff)
  16. #define soc_type(rev) (((rev) >> 12) & 0xf0)
  17. /* both macros return/take MXC_CPU_ constants */
  18. #define get_cpu_type() (cpu_type(get_cpu_rev()))
  19. #define get_soc_type() (soc_type(get_cpu_rev()))
  20. #define is_cpu_type(cpu) (get_cpu_type() == cpu)
  21. #define is_soc_type(soc) (get_soc_type() == soc)
  22. #define is_mx6dqp() (is_cpu_type(MXC_CPU_MX6QP) || is_cpu_type(MXC_CPU_MX6DP))
  23. u32 get_nr_cpus(void);
  24. u32 get_cpu_rev(void);
  25. u32 get_cpu_speed_grade_hz(void);
  26. u32 get_cpu_temp_grade(int *minc, int *maxc);
  27. const char *get_imx_type(u32 imxtype);
  28. u32 imx_ddr_size(void);
  29. void sdelay(unsigned long);
  30. void set_chipselect_size(int const);
  31. /*
  32. * Initializes on-chip ethernet controllers.
  33. * to override, implement board_eth_init()
  34. */
  35. int fecmxc_initialize(bd_t *bis);
  36. u32 get_ahb_clk(void);
  37. u32 get_periph_clk(void);
  38. int mxs_reset_block(struct mxs_register_32 *reg);
  39. int mxs_wait_mask_set(struct mxs_register_32 *reg, u32 mask, u32 timeout);
  40. int mxs_wait_mask_clr(struct mxs_register_32 *reg, u32 mask, u32 timeout);
  41. #endif