diff options
| author | Caleb Connolly <[email protected]> | 2024-02-26 17:26:25 +0000 |
|---|---|---|
| committer | Caleb Connolly <[email protected]> | 2024-03-01 14:44:37 +0000 |
| commit | a2364d97ffaef6b708b0e7098c5cb5de98f5b6e1 (patch) | |
| tree | 522adb70bc0576697ddb92e9b2ee19b38331f4a8 /board | |
| parent | 059d526af3123935c1fb525d12953d570d392f7c (diff) | |
mach-snapdragon: dynamic load addresses
Heavily inspired by Apple board code. Use the LMB allocator to configure
load addresses at runtime, and implement a lookup table for selecting a
devicetree.
As some Qualcomm RBx boards have different RAM capacities and base
addresses, it isn't possible to hardcode these regions.
Reviewed-by: Neil Armstrong <[email protected]>
Reviewed-by: Sumit Garg <[email protected]>
Tested-by: Sumit Garg <[email protected]> #qcs404
Signed-off-by: Caleb Connolly <[email protected]>
Diffstat (limited to 'board')
| -rw-r--r-- | board/qualcomm/dragonboard410c/dragonboard410c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/qualcomm/dragonboard410c/dragonboard410c.c b/board/qualcomm/dragonboard410c/dragonboard410c.c index 0136cc2237d..fbbfc0e65e2 100644 --- a/board/qualcomm/dragonboard410c/dragonboard410c.c +++ b/board/qualcomm/dragonboard410c/dragonboard410c.c @@ -88,7 +88,7 @@ int misc_init_r(void) return 0; } -int board_late_init(void) +int qcom_late_init(void) { char serial[16]; |
