diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-05-08 16:50:29 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-05-08 16:50:29 +0000 |
commit | fff070f2cbb01b7c0879e9dcb13ee4e3ed2497f0 (patch) | |
tree | 44899a9ae6e8143740a4b02e7d50a3b6db768008 /sys/src/9/imx8/init9.s | |
parent | 9126ee3eea90d639f4e877c01400248581d10f65 (diff) |
imx8: add work in progress i.MX8MQ kernel for the mntreform2 laptop
This is a work in progress port to the mntreform2 laptop.
Working so far:
- mmu (same as raspberry pi 3b+)
- arm generic timer
- gicv3
- uart1
- enet
With access to the uart, one can netboot this kernel in u-boot
using the following commands:
> dhcp
> bootm
Diffstat (limited to 'sys/src/9/imx8/init9.s')
-rw-r--r-- | sys/src/9/imx8/init9.s | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/src/9/imx8/init9.s b/sys/src/9/imx8/init9.s new file mode 100644 index 000000000..45ae62fea --- /dev/null +++ b/sys/src/9/imx8/init9.s @@ -0,0 +1,4 @@ +TEXT main(SB), 1, $8 + MOV $setSB(SB), R28 /* load the SB */ + MOV $boot(SB), R0 + B startboot(SB) |