Re: [PATCH] board: ti: am62x: Add variable device tree in env

2023-07-31 Thread Jason Kacines
On Mon, Jul 31, 2023 at 09:36:38AM -0500, Andrew Davis wrote: > On 7/31/23 9:27 AM, Jason Kacines wrote: > > Added variable default_device_tree that grabs from defconfig. Prevents > > needing to change this variable in two locations if using a separate > > device tree. In the

[PATCH] board: ti: am62x: Add variable device tree in env

2023-07-31 Thread Jason Kacines
Added variable default_device_tree that grabs from defconfig. Prevents needing to change this variable in two locations if using a separate device tree. In the future, it would be a good idea to remove this logic completely, but this will help reduce complications. Signed-off-by: Jason Kacines

[PATCH] docs: boards: ti: add openocd spl debugging docs

2023-07-21 Thread Jason Kacines
Add documentation on how to use OpenOCD to debug U-Boot for TI K3 Generation boards. Signed-off-by: Jason Kacines --- doc/board/ti/am62x_openocd.rst | 248 + doc/board/ti/k3.rst| 20 ++- 2 files changed, 265 insertions(+), 3 deletions(-) create mode

[RFC PATCH 3/3] board: ti: am62x: Add am62x_evm defconfig fragments

2023-07-11 Thread Jason Kacines
ed to access the .config fragments from /board/../ Also remove the original am62x_evm defconfigs now that fragments will be used to support to the board. Signed-off-by: Jason Kacines --- board/ti/am62x/am62x_evm_a53.config | 38 + board/ti/am62x/am62x_evm_r5.config | 51

[RFC PATCH 2/3] configs: Add am62x wakeup defconfigs

2023-07-11 Thread Jason Kacines
: Jason Kacines --- configs/am62x_a53_defconfig | 78 ++ configs/am62x_r5_defconfig | 94 + 2 files changed, 172 insertions(+) create mode 100644 configs/am62x_a53_defconfig create mode 100644 configs/am62x_r5_defconfig diff --git a

[RFC PATCH 1/3] scripts: kconfig: Add config fragment support in board/../

2023-07-11 Thread Jason Kacines
Add support to config fragments (.config) located in the /board directory. This will allow only base defconfigs to live in /configs and all fragments to live in their respective device directory in /board/.. Signed-off-by: Jason Kacines --- scripts/kconfig/Makefile | 4 +++- 1 file changed, 3

[RFC PATCH 0/3] Minimal platform configuration

2023-07-11 Thread Jason Kacines
e can use for new board wakeups with individual board/ti/*.config fragments for each board varient. Jason Kacines (3): scripts: kconfig: Add config fragment support in board/../ configs: Add am62x wakeup defconfigs board: ti: am62x: Add am62x_evm defconfig fragments board/ti/am62x/am62x_ev