global_data.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (c) 2012 The Chromium OS Authors.
  3. * (C) Copyright 2002-2010
  4. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __ASM_GENERIC_GBL_DATA_H
  9. #define __ASM_GENERIC_GBL_DATA_H
  10. /*
  11. * The following data structure is placed in some memory which is
  12. * available very early after boot (like DPRAM on MPC8xx/MPC82xx, or
  13. * some locked parts of the data cache) to allow for a minimum set of
  14. * global variables during system initialization (until we have set
  15. * up the memory controller so that we can use RAM).
  16. *
  17. * Keep it *SMALL* and remember to set GENERATED_GBL_DATA_SIZE > sizeof(gd_t)
  18. *
  19. * Each architecture has its own private fields. For now all are private
  20. */
  21. #ifndef __ASSEMBLY__
  22. #include <linux/list.h>
  23. typedef struct global_data {
  24. bd_t *bd;
  25. unsigned long flags;
  26. unsigned int baudrate;
  27. unsigned long cpu_clk; /* CPU clock in Hz! */
  28. unsigned long bus_clk;
  29. /* We cannot bracket this with CONFIG_PCI due to mpc5xxx */
  30. unsigned long pci_clk;
  31. unsigned long mem_clk;
  32. #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
  33. unsigned long fb_base; /* Base address of framebuffer mem */
  34. #endif
  35. #if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
  36. unsigned long post_log_word; /* Record POST activities */
  37. unsigned long post_log_res; /* success of POST test */
  38. unsigned long post_init_f_time; /* When post_init_f started */
  39. #endif
  40. #ifdef CONFIG_BOARD_TYPES
  41. unsigned long board_type;
  42. #endif
  43. unsigned long have_console; /* serial_init() was called */
  44. #ifdef CONFIG_PRE_CONSOLE_BUFFER
  45. unsigned long precon_buf_idx; /* Pre-Console buffer index */
  46. #endif
  47. #ifdef CONFIG_MODEM_SUPPORT
  48. unsigned long do_mdm_init;
  49. unsigned long be_quiet;
  50. #endif
  51. unsigned long env_addr; /* Address of Environment struct */
  52. unsigned long env_valid; /* Checksum of Environment valid? */
  53. unsigned long ram_top; /* Top address of RAM used by U-Boot */
  54. unsigned long relocaddr; /* Start address of U-Boot in RAM */
  55. phys_size_t ram_size; /* RAM size */
  56. unsigned long mon_len; /* monitor len */
  57. unsigned long irq_sp; /* irq stack pointer */
  58. unsigned long start_addr_sp; /* start_addr_stackpointer */
  59. unsigned long reloc_off;
  60. struct global_data *new_gd; /* relocated global data */
  61. #ifdef CONFIG_DM
  62. struct device *dm_root; /* Root instance for Driver Model */
  63. struct list_head uclass_root; /* Head of core tree */
  64. #endif
  65. const void *fdt_blob; /* Our device tree, NULL if none */
  66. void *new_fdt; /* Relocated FDT */
  67. unsigned long fdt_size; /* Space reserved for relocated FDT */
  68. void **jt; /* jump table */
  69. char env_buf[32]; /* buffer for getenv() before reloc. */
  70. #ifdef CONFIG_TRACE
  71. void *trace_buff; /* The trace buffer */
  72. #endif
  73. #if defined(CONFIG_SYS_I2C)
  74. int cur_i2c_bus; /* current used i2c bus */
  75. #endif
  76. #ifdef CONFIG_SYS_I2C_MXC
  77. void *srdata[10];
  78. #endif
  79. unsigned long timebase_h;
  80. unsigned long timebase_l;
  81. struct arch_global_data arch; /* architecture-specific data */
  82. } gd_t;
  83. #endif
  84. /*
  85. * Global Data Flags
  86. */
  87. #define GD_FLG_RELOC 0x00001 /* Code was relocated to RAM */
  88. #define GD_FLG_DEVINIT 0x00002 /* Devices have been initialized */
  89. #define GD_FLG_SILENT 0x00004 /* Silent mode */
  90. #define GD_FLG_POSTFAIL 0x00008 /* Critical POST test failed */
  91. #define GD_FLG_POSTSTOP 0x00010 /* POST seqeunce aborted */
  92. #define GD_FLG_LOGINIT 0x00020 /* Log Buffer has been initialized */
  93. #define GD_FLG_DISABLE_CONSOLE 0x00040 /* Disable console (in & out) */
  94. #define GD_FLG_ENV_READY 0x00080 /* Env. imported into hash table */
  95. #endif /* __ASM_GENERIC_GBL_DATA_H */