aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvetch <vetch97@gmail.com>2020-01-21 14:43:49 +0100
committervetch <vetch97@gmail.com>2020-01-21 14:43:49 +0100
commit0c96b5f3ca5630df52b63f3c406801117dd445ff (patch)
tree3c6bdec6074d4816289cf679a3a4e863ad417a2d
parentfebe3518d64a1699b0418cae4cc153ce4a14d666 (diff)
downloadrpi-MMU-example-0c96b5f3ca5630df52b63f3c406801117dd445ff.tar.gz
rpi-MMU-example-0c96b5f3ca5630df52b63f3c406801117dd445ff.zip
Readme + docs a bit updated
-rw-r--r--README.md3
-rw-r--r--docs/Building-and-running-explained.md21
-rw-r--r--docs/Project-structure-explained.md58
3 files changed, 41 insertions, 41 deletions
diff --git a/README.md b/README.md
index e59d792..6d4c5f0 100644
--- a/README.md
+++ b/README.md
@@ -53,8 +53,7 @@ First, build and test rpi-open-firmware. Now, copy either kernel.img or loader.i
Now, connect RaspberryPi via UART to Your machine. GPIO on the Pi works with 3.3V, so You should make sure, that UART device on the other end is also working wih 3.3V. This is the pinout of the RaspberyPi 3 model B that has been used for testing so far:
-Top left of the board is here
-
+ Top left of the board is here
|
V
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
diff --git a/docs/Building-and-running-explained.md b/docs/Building-and-running-explained.md
index 257c75f..2e72e51 100644
--- a/docs/Building-and-running-explained.md
+++ b/docs/Building-and-running-explained.md
@@ -51,19 +51,20 @@ First, build and test rpi-open-firmware. Now, copy either kernel.img or loader.i
Now, connect RaspberryPi via UART to Your machine. GPIO on the Pi works with 3.3V, so You should make sure, that UART device on the other end is also working wih 3.3V. This is the pinout of the RaspberyPi 3 model B that has been used for testing so far:
-Top left of the board is here
-
-+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
-| 2| 4| 6| 8|10|12|14|16|18|20|22|24|26|28|30|32|34|36|38|40|
-+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
-| 1| 3| 5| 7| 9|11|13|15|17|19|21|23|25|27|29|31|33|35|37|39|
-+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
+ Top left of the board is here
+ |
+ V
+ +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
+ | 2| 4| 6| 8|10|12|14|16|18|20|22|24|26|28|30|32|34|36|38|40|
+ +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
+ | 1| 3| 5| 7| 9|11|13|15|17|19|21|23|25|27|29|31|33|35|37|39|
+ +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
Under rpi-open-firmware (stock firmware might map UARTs differently):
- pin 6 is Ground
- pin 8 is TX
- pin 10 is RX
+1. pin 6 is Ground
+2. pin 8 is TX
+3. pin 10 is RX
Once UART is connected, You can power on the board.
diff --git a/docs/Project-structure-explained.md b/docs/Project-structure-explained.md
index 355910d..7dc0789 100644
--- a/docs/Project-structure-explained.md
+++ b/docs/Project-structure-explained.md
@@ -64,38 +64,38 @@ Directory structure of the project:
### Most Significant Directories
- doc/
- Contains documentation of the project.
-
- build/
- Contains main Makefile of the project. All objects created during the build process are placed there.
-
- Makefile
- Proxies all calls to Makefile in build/.
-
- src/
- Contains all sources of the project.
-
- src/host/
- Contains sources of helper programs to be compiled using native GCC and run on the machine where development takes place.
-
- src/arm/
- Contains sources to be compiled using ARM cross-compiler GCC and run on the RaspberryPi.
+doc/
+ Contains documentation of the project.
+
+build/
+ Contains main Makefile of the project. All objects created during the build process are placed there.
+
+Makefile
+ Proxies all calls to Makefile in build/.
- src/arm/common
- Contains sources used in both: privileged mode and unprivileged mode.
+src/
+ Contains all sources of the project.
+
+src/host/
+ Contains sources of helper programs to be compiled using native GCC and run on the machine where development takes place.
- src/arm/PL0
- Contains sources used exclusively in unprivileged, user-mode (PL0) program, as well as the program's linker script.
+src/arm/
+ Contains sources to be compiled using ARM cross-compiler GCC and run on the RaspberryPi.
+
+src/arm/common
+ Contains sources used in both: privileged mode and unprivileged mode.
+
+src/arm/PL0
+ Contains sources used exclusively in unprivileged, user-mode (PL0) program, as well as the program's linker script.
- src/arm/PL1
- Contains sources used exclusively in privileged (PL1) mode.
+src/arm/PL1
+ Contains sources used exclusively in privileged (PL1) mode.
- src/arm/PL1/loader
- Contains sources used exclusively in the bootloader, as well as linker scripts for stages 1 and 2 of this bootloader.
+src/arm/PL1/loader
+ Contains sources used exclusively in the bootloader, as well as linker scripts for stages 1 and 2 of this bootloader.
- src/arm/PL1/kernel
- Contains sources used exclusively in the kernel, as well as linker scripts for stages 1 and 2 of this kernel.
+src/arm/PL1/kernel
+ Contains sources used exclusively in the kernel, as well as linker scripts for stages 1 and 2 of this kernel.
- src/arm/PL1/PL1_common
- Contains sources used in both: kernel and bootloader.
+src/arm/PL1/PL1_common
+ Contains sources used in both: kernel and bootloader. \ No newline at end of file