summaryrefslogtreecommitdiff
path: root/doc/board/ti/am65x_evm.rst
AgeCommit message (Collapse)AuthorFilesLines
2023-08-23doc: board: ti: am65x: Fix build step numberingNishanth Menon1-6/+6
Fix up build step numbering. Fixes: c727b81d6530 ("doc: board: ti: k3: Reuse build instructions") Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
2023-08-23doc: board: ti: am65x: provide image alt textHeinrich Schuchardt1-0/+6
Provide alternative text for image. Fixes: fd358121bdb8 ("doc: board: ti: am65x: Update with boot flow diagram") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Signed-off-by: Nishanth Menon <nm@ti.com>
2023-08-09doc: board: ti: k3: Add a guide to debugging with OpenOCDJason Kacines1-0/+24
Bootloader debug usually tends to be a bit dicey prior to DDR and serial port getting active in the system. JTAG typically remains the only practical debug option during the initial bringup. OpenOCD is one of the most popular environment for providing debug capability via a GDB compatible interface for developers to work with. Debugging U-Boot and bootloaders on K3 platform does have a bit of tribal knowledge that is better documented in our common platform documentation. Signed-off-by: Jason Kacines <j-kacines@ti.com> Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: board: ti: *: Add platform informationNishanth Menon1-0/+4
Add link to the actual platform for folks to find details about the board in addition to the SoC's TRM. Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: board: ti: am65x_evm: Convert the emmc layout to svgNishanth Menon1-16/+1
Convert the emmc memory layout to svg Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: board: ti: am65/j721e: Convert OSPI memory map to svgNishanth Menon1-26/+1
Convert the memory map for OSPI as a common memory map Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: board: ti: am65x_evm: Convert the UART boot responsibility to list tableNishanth Menon1-10/+28
Use list tables to map up the UART Boot responsibility table. Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: board: ti: am65x: Convert the image format to svgNishanth Menon1-61/+4
Convert the image format into svg that can be reused across platforms as needed. Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: board: ti: k3: Reuse build instructionsNishanth Menon1-18/+41
Introduce common variables to define a generic build instruction that is then used in specific board specific description. Labels are introduced in the evm.rst files to be then reused in variant board documentation as well. While at this, drop using ARCH=arm when building u-boot sources. This practice has been discouraged for some time and can potentially create problems with Kconfig rules related to aarch64. It's best to avoid this approach. Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: board: ti: am65x: Update with boot flow diagramNishanth Menon1-70/+1
Update the bootflow svg diagram instead of the ascii version Reviewed-by: Neha Malcom Francis <n-francis@ti.com> Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: board: ti: Optimize sources referencesNishanth Menon1-14/+3
We have duplication of sources which makes it hard to sustain across the board, but at the same time, we'd like to ensure readers get specific information without having to cross refer to different documentation to get piecemeal information that they need to put together. Reviewed-by: Neha Malcom Francis <n-francis@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com> Signed-off-by: Nishanth Menon <nm@ti.com>
2023-07-28doc: ti: Clarify required file names for K3 platformsTom Rini1-1/+2
Now that we are using binman in all cases on these platforms, reword things to be clearer that for filesystem booting we need to use a specific name for each component. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
2023-07-22doc: board: ti: Update documentation for binman flowNeha Malcom Francis1-0/+420
Earlier documentation specified builds for generating bootloader images using an external TI repository k3-image-gen and core-secdev-k3. Modify this to using the binman flow so that user understands how to build the final boot images. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Neha Malcom Francis <n-francis@ti.com>