@@ -5,24 +5,51 @@ The HAL is organized following the directory structure detailed below.
5
5
6
6
## Directory Structure
7
7
8
- The directory is composed by six parts:
8
+ The directory is composed of:
9
+
9
10
```
10
11
.
11
- ├── pic32c
12
+ ├── CMakeLists.txt
13
+ ├── dts
14
+ │ └── microchip
15
+ │ └── mec5
16
+ │ ├── MEC5 PINCTRL DTSI files
12
17
├── 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
13
33
├── pinconfigs
34
+ │ ├── PIC32CX pin config definition XML
14
35
├── README.md
15
36
├── scripts
37
+ │ ├── PIC32C Python pin config generation scripts
16
38
└── zephyr
39
+ └── module.yml
40
+
17
41
```
18
42
43
+ - MEC5 chips Zephyr device tree PINCFG DTSI files
19
44
- PIC32C SoC specific include libraries.
20
45
- Includes specific for these platforms
21
46
- 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
24
52
- ZephyrRTOS module directory (` zephyr ` ).
25
- - This README file.
26
53
27
54
# How to submit code
28
55
@@ -32,8 +59,30 @@ For more information about External Modules see
32
59
[ Modules Section] ( https://docs.zephyrproject.org/latest/develop/modules.html ) in special
33
60
[ Submitting Changes to Modules] ( https://docs.zephyrproject.org/latest/develop/modules.html#submitting-changes-to-modules )
34
61
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
35
84
36
- ## Repository specific guidelines
85
+ ## PIC32C Repository specific guidelines
37
86
38
87
- When submitting an updated firmware library version, it is important to make
39
88
sure that the last firmware version will be merged. The library version is
@@ -54,7 +103,7 @@ For more information about External Modules see
54
103
The above are general guidelines and exceptions could happen. In this case, the
55
104
exception should be addressed at review phase.
56
105
57
- ## The standard API
106
+ ## PIC32C Standard API
58
107
59
108
The PIC32C/PIC32M standard API define all information to access Microchip SoC's
60
109
peripherals. This library does not have namespaces and prefixes which
0 commit comments