Go to the documentation of this file.
51 "File %s doesn't seem to be a DTB.\n", filename);
68 const char *root_path =
"/";
69 const char *node_name =
"chosen";
70 const char *full_path_node_name =
"/chosen";
71 const char *property_name =
"bootargs";
75 uint8_t *fdt_buf_w_space =
new uint8_t[newLen];
77 int ret = fdt_open_into((
void *)
fileData, (
void *)fdt_buf_w_space, newLen);
79 warn(
"Error resizing buffer of flattened device tree, "
81 delete [] fdt_buf_w_space;
86 int offset = fdt_path_offset((
void *)fdt_buf_w_space, full_path_node_name);
89 offset = fdt_path_offset((
void *)fdt_buf_w_space, root_path);
90 offset = fdt_add_subnode((
void *)fdt_buf_w_space,
offset, node_name);
93 offset = fdt_path_offset((
void *)fdt_buf_w_space,
97 warn(
"Error finding or adding \"chosen\" subnode to flattened "
98 "device tree, errno: %d\n",
offset);
99 delete [] fdt_buf_w_space;
105 ret = fdt_setprop((
void *)fdt_buf_w_space,
offset, property_name,
106 (
const void *)_args,
len+1);
108 warn(
"Error setting \"bootargs\" property to flattened device tree, "
110 delete [] fdt_buf_w_space;
115 ret = fdt_pack((
void *)fdt_buf_w_space);
117 warn(
"Error re-packing flattened device tree structure, "
119 delete [] fdt_buf_w_space;
138 int offset = fdt_path_offset(
fd,
"/cpus/cpu@0");
141 const void *temp = fdt_getprop(
fd,
offset,
"cpu-release-addr", &
len);
145 rel_addr =
betoh(*
static_cast<const uint32_t *
>(temp));
147 rel_addr = (rel_addr << 32) |
148 betoh(*(
static_cast<const uint32_t *
>(temp) + 1));
MemoryImage buildImage() const override
DtbFile(const std::string &name)
bool fileDataMmapped
Bool marking if this dtb file has replaced the original read in DTB file with a new modified buffer.
Addr findReleaseAddr()
Parse the DTB file enough to find the provided release address and return it.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
bool addBootCmdLine(const char *_args, size_t len)
Adds the passed in Command Line options for the kernel to the proper location in the device tree.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
ImageFileDataPtr imageData
std::shared_ptr< ImageFileData > ImageFileDataPtr
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Generated on Wed May 4 2022 12:13:51 for gem5 by doxygen 1.8.17