global_data.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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 <membuff.h>
  23. #include <linux/list.h>
  24. typedef struct global_data {
  25. bd_t *bd;
  26. unsigned long flags;
  27. unsigned int baudrate;
  28. unsigned long cpu_clk; /* CPU clock in Hz! */
  29. unsigned long bus_clk;
  30. /* We cannot bracket this with CONFIG_PCI due to mpc5xxx */
  31. unsigned long pci_clk;
  32. unsigned long mem_clk;
  33. #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
  34. unsigned long fb_base; /* Base address of framebuffer mem */
  35. #endif
  36. #if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
  37. unsigned long post_log_word; /* Record POST activities */
  38. unsigned long post_log_res; /* success of POST test */
  39. unsigned long post_init_f_time; /* When post_init_f started */
  40. #endif
  41. #ifdef CONFIG_BOARD_TYPES
  42. unsigned long board_type;
  43. #endif
  44. unsigned long have_console; /* serial_init() was called */
  45. #ifdef CONFIG_PRE_CONSOLE_BUFFER
  46. unsigned long precon_buf_idx; /* Pre-Console buffer index */
  47. #endif
  48. unsigned long env_addr; /* Address of Environment struct */
  49. unsigned long env_valid; /* Checksum of Environment valid? */
  50. unsigned long ram_top; /* Top address of RAM used by U-Boot */
  51. unsigned long relocaddr; /* Start address of U-Boot in RAM */
  52. phys_size_t ram_size; /* RAM size */
  53. #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
  54. #define MEM_RESERVE_SECURE_SECURED 0x1
  55. #define MEM_RESERVE_SECURE_MAINTAINED 0x2
  56. #define MEM_RESERVE_SECURE_ADDR_MASK (~0x3)
  57. /*
  58. * Secure memory addr
  59. * This variable needs maintenance if the RAM base is not zero,
  60. * or if RAM splits into non-consecutive banks. It also has a
  61. * flag indicating the secure memory is marked as secure by MMU.
  62. * Flags used: 0x1 secured
  63. * 0x2 maintained
  64. */
  65. phys_addr_t secure_ram;
  66. #endif
  67. unsigned long mon_len; /* monitor len */
  68. unsigned long irq_sp; /* irq stack pointer */
  69. unsigned long start_addr_sp; /* start_addr_stackpointer */
  70. unsigned long reloc_off;
  71. struct global_data *new_gd; /* relocated global data */
  72. #ifdef CONFIG_DM
  73. struct udevice *dm_root; /* Root instance for Driver Model */
  74. struct udevice *dm_root_f; /* Pre-relocation root instance */
  75. struct list_head uclass_root; /* Head of core tree */
  76. #endif
  77. #ifdef CONFIG_TIMER
  78. struct udevice *timer; /* Timer instance for Driver Model */
  79. #endif
  80. const void *fdt_blob; /* Our device tree, NULL if none */
  81. void *new_fdt; /* Relocated FDT */
  82. unsigned long fdt_size; /* Space reserved for relocated FDT */
  83. struct jt_funcs *jt; /* jump table */
  84. char env_buf[32]; /* buffer for getenv() before reloc. */
  85. #ifdef CONFIG_TRACE
  86. void *trace_buff; /* The trace buffer */
  87. #endif
  88. #if defined(CONFIG_SYS_I2C)
  89. int cur_i2c_bus; /* current used i2c bus */
  90. #endif
  91. #ifdef CONFIG_SYS_I2C_MXC
  92. void *srdata[10];
  93. #endif
  94. unsigned long timebase_h;
  95. unsigned long timebase_l;
  96. #ifdef CONFIG_SYS_MALLOC_F_LEN
  97. unsigned long malloc_base; /* base address of early malloc() */
  98. unsigned long malloc_limit; /* limit address */
  99. unsigned long malloc_ptr; /* current address */
  100. #endif
  101. #ifdef CONFIG_PCI
  102. struct pci_controller *hose; /* PCI hose for early use */
  103. phys_addr_t pci_ram_top; /* top of region accessible to PCI */
  104. #endif
  105. #ifdef CONFIG_PCI_BOOTDELAY
  106. int pcidelay_done;
  107. #endif
  108. struct udevice *cur_serial_dev; /* current serial device */
  109. struct arch_global_data arch; /* architecture-specific data */
  110. #ifdef CONFIG_CONSOLE_RECORD
  111. struct membuff console_out; /* console output */
  112. struct membuff console_in; /* console input */
  113. #endif
  114. #ifdef CONFIG_DM_VIDEO
  115. ulong video_top; /* Top of video frame buffer area */
  116. ulong video_bottom; /* Bottom of video frame buffer area */
  117. #endif
  118. } gd_t;
  119. #endif
  120. /*
  121. * Global Data Flags - the top 16 bits are reserved for arch-specific flags
  122. */
  123. #define GD_FLG_RELOC 0x00001 /* Code was relocated to RAM */
  124. #define GD_FLG_DEVINIT 0x00002 /* Devices have been initialized */
  125. #define GD_FLG_SILENT 0x00004 /* Silent mode */
  126. #define GD_FLG_POSTFAIL 0x00008 /* Critical POST test failed */
  127. #define GD_FLG_POSTSTOP 0x00010 /* POST seqeunce aborted */
  128. #define GD_FLG_LOGINIT 0x00020 /* Log Buffer has been initialized */
  129. #define GD_FLG_DISABLE_CONSOLE 0x00040 /* Disable console (in & out) */
  130. #define GD_FLG_ENV_READY 0x00080 /* Env. imported into hash table */
  131. #define GD_FLG_SERIAL_READY 0x00100 /* Pre-reloc serial console ready */
  132. #define GD_FLG_FULL_MALLOC_INIT 0x00200 /* Full malloc() is ready */
  133. #define GD_FLG_SPL_INIT 0x00400 /* spl_init() has been called */
  134. #define GD_FLG_SKIP_RELOC 0x00800 /* Don't relocate */
  135. #define GD_FLG_RECORD 0x01000 /* Record console */
  136. #endif /* __ASM_GENERIC_GBL_DATA_H */