Skip to content

Commit bd57c27

Browse files
committed
hal: microchip: Add mec, mec5, and mpfs to readme markdown
We added information for the non-PIC32CX HAL components to the README.md file. Components mec (legacy MEC150x/2x), mec5 (MECH172x, MEC174x, and MEC175x), and mpfs (PolarFire) directory layout and information. Signed-off-by: Scott Worley <[email protected]>
1 parent e356992 commit bd57c27

File tree

2 files changed

+60
-11
lines changed

2 files changed

+60
-11
lines changed

README.md

+56-7
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,51 @@ The HAL is organized following the directory structure detailed below.
55

66
## Directory Structure
77

8-
The directory is composed by six parts:
8+
The directory is composed of:
9+
910
```
1011
.
11-
├── pic32c
12+
├── CMakeLists.txt
13+
├── dts
14+
│   └── microchip
15+
│   └── mec5
16+
│   ├── MEC5 PINCTRL DTSI files
1217
├── include
18+
│   └── dt-bindings
19+
│   └── pinctrl
20+
│   ├── PIC32CX PINCTRL C header files
21+
├── mec
22+
│   ├── Legacy MEC150x/2x C chip and peripheral header files
23+
├── mec5
24+
│   ├── CMakeLists.txt
25+
│   ├── devices
26+
│   │   ├── MEC5 HAL chip and peripheral header files
27+
│   └── drivers
28+
│   ├── MEC5 HAL peripheral C source files
29+
├── mpfs
30+
│   ├── PolarFire board and HAL files
31+
├── pic32c
32+
│   ├── PIC32CX chip and peripheral HAL files
1333
├── pinconfigs
34+
│   ├── PIC32CX pin config definition XML
1435
├── README.md
1536
├── scripts
37+
│   ├── PIC32C Python pin config generation scripts
1638
└── zephyr
39+
└── module.yml
40+
1741
```
1842

43+
- MEC5 chips Zephyr device tree PINCFG DTSI files
1944
- PIC32C SoC specific include libraries.
2045
- Includes specific for these platforms
2146
- devicetree bindings
22-
- [Pin definitions](pinconfigs/README.md)
23-
- [Scripts](scripts/README.md) used for code generation
47+
- Legacy MEC152x header files
48+
- MEC5 HAL chip and peripheral header and C source files
49+
- [PIC32C Pin definitions](pinconfigs/README.md)
50+
- This README file
51+
- [PIC32C Scripts](scripts/README.md) used for code generation
2452
- ZephyrRTOS module directory (`zephyr`).
25-
- This README file.
2653

2754
# How to submit code
2855

@@ -32,8 +59,30 @@ For more information about External Modules see
3259
[Modules Section](https://docs.zephyrproject.org/latest/develop/modules.html) in special
3360
[Submitting Changes to Modules](https://docs.zephyrproject.org/latest/develop/modules.html#submitting-changes-to-modules)
3461

62+
## MEC5 HAL
63+
The MEC5 HAL currently support Microchip MEC172x (named MECH172x in Zephyr SoC), MEC174x, and MEC175x.<br/>
64+
On the Zephyr side the SoC layer build rules set CONFIG_HAS_MEC5_HAL=y.<br/>
65+
The top level CMakeLists.txt then processes the hal_microchip/mec5 subfolder.<br/>
66+
The MEC5 HAL device is chosen using Zephyr CONFIG_SOC_SERIES and CONFIG_SOC.<br/>
67+
Zephyr SoC layer soc.h for MECH172x, MEC174x, and MEC175x include device_mec5.h from the MEC5 HAL.<br/>
68+
Zephyr drivres and applications should include individual HAL API headers to access specific peripherals.<br/>
69+
70+
## MPFS PolarFile HAL
71+
The Microchip Polarfire SOC HAL was downloaded from:
72+
73+
https://github.com/polarfire-soc/platform
74+
75+
Addditionally, the bare metal samples from https://github.com/polarfire-soc/polarfire-soc-bare-metal-examples
76+
are required to extract the Icicle Kit bopard configuration files.
77+
78+
Both are from Tag 21.08
79+
80+
The following changes were made:
81+
82+
- platform-2021.08 top folder renamed to mpfs and located at modules/hal/microchip
83+
- The applications/mpfs-pmp-demo/mpfs-pmp-app-u54-1/src/boards folder is copied to modules/hal/microchip/mpfs
3584

36-
## Repository specific guidelines
85+
## PIC32C Repository specific guidelines
3786

3887
- When submitting an updated firmware library version, it is important to make
3988
sure that the last firmware version will be merged. The library version is
@@ -54,7 +103,7 @@ For more information about External Modules see
54103
The above are general guidelines and exceptions could happen. In this case, the
55104
exception should be addressed at review phase.
56105

57-
## The standard API
106+
## PIC32C Standard API
58107

59108
The PIC32C/PIC32M standard API define all information to access Microchip SoC's
60109
peripherals. This library does not have namespaces and prefixes which

scripts/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Microchip PIC32C/PIC32M scripts
22

3-
This folder contains `hal_microchip` scripts.
3+
This folder contains `hal_microchip` scripts for generating PIC32C PINCFG files.
44

5-
## Dependencies
5+
## PIC32C Dependencies
66

77
Scripts require Python 3.7+ and the Python dependencies listed in
88
`requirements.txt`. They can be installed by running:
@@ -11,7 +11,7 @@ Scripts require Python 3.7+ and the Python dependencies listed in
1111
pip install -r scripts/requirements.txt
1212
```
1313

14-
## Lint
14+
## PIC32C Lint
1515

1616
Scripts should be formatted using `black` and linted using `flake8`.
1717

@@ -21,7 +21,7 @@ Such development tools can be installed using:
2121
pip install -r scripts/requirements-dev.txt
2222
```
2323

24-
## Tests
24+
## PIC32 Tests
2525

2626
Before running tests make sure to have testing dependencies installed. They
2727
can be installed by running:

0 commit comments

Comments
 (0)