diff options
| author | Liya Huang <[email protected]> | 2025-01-27 17:38:11 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-02-04 11:57:36 -0600 |
| commit | adeea8568d605d5132e0b93ef86a4094c84e5d53 (patch) | |
| tree | a1d4165a0e71a1f866fc54cc8e2983f677a896b9 /api | |
| parent | 72bbb645b365c19def1527855248c11ec9665f28 (diff) | |
API: system info adds FLASH and clk fetches
Refer to api/api platform-powerpc.c implementation
Signed-off-by: Liya Huang <[email protected]>
Diffstat (limited to 'api')
| -rw-r--r-- | api/api_platform.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/api/api_platform.c b/api/api_platform.c index 7a789bd2016..d5cbcd6e201 100644 --- a/api/api_platform.c +++ b/api/api_platform.c @@ -17,9 +17,15 @@ int platform_sys_info(struct sys_info *si) { int i; + si->clk_bus = gd->bus_clk; + si->clk_cpu = gd->cpu_clk; + for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) platform_set_mr(si, gd->bd->bi_dram[i].start, gd->bd->bi_dram[i].size, MR_ATTR_DRAM); + platform_set_mr(si, gd->ram_base, gd->ram_size, MR_ATTR_DRAM); + platform_set_mr(si, gd->bd->bi_flashstart, gd->bd->bi_flashsize, MR_ATTR_FLASH); + return 1; } |
