nuttx/mm/mm_gran
Lwazi Dube e593ba35a4 arch/mips: Add basic support for MIPS Creator CI20 board
This commit introduces a rudimentary architecture and board port for the
MIPS Creator CI20, featuring the dual core Ingenic JZ4780 SoC (MIPS32).

Included in this initial implementation:
- Basic architectural initialization and startup code for the JZ4780 Core 0.
- Minimal configuration required to execute from RAM.
- Early UART/serial console support for basic debugging and NSH output.
- Minimal board-specific configuration for the CI20 target.
- Console output is routed via UART0 on the expansion header.

This establishes basic support for running NuttX on the MIPS CI20.
Further peripherals, optimization, and extended documentation are left for
future iterations or community contributions.

Build and Runtime Deployment Info:
----------------------------------

The baseline can be configured, compiled using the MIPS MTI toolchain,
and loaded via U-Boot using the following commands (replace
<tftp_dir> with your local TFTP root directory).

./tools/configure.sh -l ci20/nsh
  make CROSSDEV=mips-mti-elf-
  mkimage -A mips -O linux -T kernel -C none -a 0x80000180 -e 0x800004ac \
    -n "nx" -d nuttx.bin <tftp_dir>/nuttx.umg

Note: U-Boot must be properly configured for networking (e.g., valid ipaddr,
serverip, and ethaddr environment variables) to fetch the image over TFTP.

Run this from U-Boot prompt:
  tftp nuttx.umg && bootm $fileaddr

Signed-off-by: Lwazi Dube <lwazeh@gmail.com>
2026-07-15 08:02:55 -03:00
..
CMakeLists.txt mm: migrate to SPDX identifier 2024-09-13 08:49:05 +08:00
Make.defs mm: migrate to SPDX identifier 2024-09-13 08:49:05 +08:00
mm_gran.h mm: migrate to SPDX identifier 2024-09-13 08:49:05 +08:00
mm_granalloc.c include/debug.h: Move to include/nuttx/debug.h 2026-04-07 07:50:06 -03:00
mm_grancritical.c mm: migrate to SPDX identifier 2024-09-13 08:49:05 +08:00
mm_granfree.c include/debug.h: Move to include/nuttx/debug.h 2026-04-07 07:50:06 -03:00
mm_graninfo.c mm: migrate to SPDX identifier 2024-09-13 08:49:05 +08:00
mm_graninit.c mm/gran: reject pools with too many granules 2026-06-24 08:41:28 -03:00
mm_granrelease.c mm: migrate to SPDX identifier 2024-09-13 08:49:05 +08:00
mm_granreserve.c include/debug.h: Move to include/nuttx/debug.h 2026-04-07 07:50:06 -03:00
mm_grantable.c arch/mips: Add basic support for MIPS Creator CI20 board 2026-07-15 08:02:55 -03:00
mm_grantable.h style: fix spelling in code comments and strings 2025-05-23 10:48:41 +08:00
mm_pgalloc.c mm/gran: add gran_alloc_align API 2025-05-12 15:01:37 +08:00