Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/9elements/osf-coreboot-workshop
OSFC ODROID H4 coreboot workshop
https://github.com/9elements/osf-coreboot-workshop
Last synced: 6 days ago
JSON representation
OSFC ODROID H4 coreboot workshop
- Host: GitHub
- URL: https://github.com/9elements/osf-coreboot-workshop
- Owner: 9elements
- Created: 2024-09-04T12:01:12.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-06T02:43:02.000Z (2 months ago)
- Last Synced: 2024-09-06T14:15:34.007Z (2 months ago)
- Size: 6.32 MB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OSF coreboot workshop
## Relevant web resources
- [Slides](https://docs.google.com/presentation/d/1QNJYRkoYZDvO7Ew9f9q_78DF1Lv541H7GET_inFBJuw/edit#slide=id.g28507ff9567_0_6)
- [ODROID H4 Wiki](https://wiki.odroid.com/odroid-h4/start)
- [coreboot documentation](https://doc.coreboot.org/)## Getting started with coreboot on QEMU
The coreboot documentation provides a tutorial on how to [start from scratch](https://doc.coreboot.org/tutorial/part1.html#tutorial-part-1-starting-from-scratch).
Follow the instructions there and try to boot QEMU with coreboot as firmware.## Read H4+ vendor firmware
Before we can build a complete coreboot firmware image for the H4+, we need to read the manufacturer's firmware to extract the relevant flash regions.
### Connection between programmer and host firmware flash
The flash chip does not have a connector to access the flash chip. However, due to the SOI8 package
format, the pinout is easily accessible using the appropriate test clip. The only thing to note is
the polarity of the connection. Pin 1 (CS) is marked with a dot on the chip and a red wire on the
test clip, which must match to avoid bricking the board. The picture below shows the primary chip
we will use to flash coreboot.![](/images/odroid-h4-ultra-flash-1.jpg)
### How to use the programmer
To use the picoprog to read the NOR flash containing the firmware, we need to use a programmer
software that supports the [Serprog Protocol](https://www.flashrom.org/supported_hw/supported_prog/serprog/overview.html).
For this we recommend the use of either [flashrom](https://www.flashrom.org/) or [flashprog](https://flashprog.org/wiki/Flashprog).
For detailed instructions on how to read the flash chip, please refer to the [picoprog README.md](https://github.com/9elements/picoprog?tab=readme-ov-file#usage).## Build coreboot for ODROID H4
The patches to support the board are currently wip and must be obtained from coreboot gerrit:
```
git fetch https://review.coreboot.org/coreboot refs/changes/79/83979/10 && git checkout -b change-83979 FETCH_HEAD
```Before starting the configuration, extract the relevant Flash regions using [ifdtool](https://doc.coreboot.org/util/ifdtool/binary_extraction.html).
The extracted soc information will be saved to your local working directory.Intel FDT
The Intel Flash Descriptor (IFD) defines offsets and sizes of various regions of the flash.
It is used to define coreboots flashmap, which describes partitions on the flash chip.
For further details refer to the [official coreboot documentation](https://review.coreboot.org/plugins/gitiles/coreboot/+/0cd098e4e41d6bb3b27327d4a6526bd7004bfc77/Documentation/ifdtool/layout.md).```
/path/to/ifdtool -x /path/to/ODROID-H4-PLUS-1.rom
```If you have built QEMU before, you should run `make distclean` before configuring the new target.
For configuration, select "Hardkernel" as the mainboard vendor and include the IFD and ME flash region via the config menu by their file path.
All other default configurations are sufficient to boot the board.## Flash H4+ coreboot firmware
You've already read the flash. I'm sure you know the drill. :)
## Boot coreboot
Depending on the configured log level, the coreboot console provides substitute information during
the boot process. Therefore, you should make sure that the UART is set up properly.
The [picoprog provides an additional interface to connect to the UART](https://github.com/9elements/picoprog?tab=readme-ov-file#uart-communication).
Use the software of your choice to connect to it. e.g:
```
-b 115200 /dev/serial/by-id/usb-9elements_Picoprog_OSFC2024-if02
```### Connect UART pins
The GPIO pin assignment of our target hardware can be found here:
[ODROID Wiki: H4 I/O Expansion GPIO MAP](https://wiki.odroid.com/odroid-h4/hardware/io_expansion_gpio)Use a tree jumper cable to connect GND and RX to TX and vice versa.
### Verify UART Communication
We have pre-installed a Linux system with the serial console enabled by default. To test if the
UART communication is working, you should first boot the system and check. But wait, we already
flashed the coreboot, right? This is where the secondary flash chip comes in handy. Use a jumper
to connect the pins to select it and boot the Linux system. The login credentials are `root:osf`.## Going Further
Once you have successfully reached the coreboot payload stage, you are ready to begin your
adventures. Try out different payloads or play around with the configuration options. Of course, you
can also look at the code and poke around. Just be careful with the internal GPIO related
configuration as a misconfiguration could potentially brick the hardware. If you run out of ideas,
just ask the staff. They might know something you can try out.