Skip to content

Commit

Permalink
Adding support for Microchip PIC32CX SG devices
Browse files Browse the repository at this point in the history
  • Loading branch information
MyGh64605 committed May 7, 2024
1 parent 82d8d1b commit 7902150
Show file tree
Hide file tree
Showing 358 changed files with 17,472 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
add_subdirectory_ifdef(CONFIG_HAS_MEC_HAL mec)
add_subdirectory_ifdef(CONFIG_HAS_MPFS_HAL mpfs)
add_subdirectory_ifdef(CONFIG_HAS_PIC32CXSG_HAL pic32cxsg)
zephyr_include_directories_ifdef(CONFIG_MPLABX include)
add_subdirectory(mplabx)
67 changes: 67 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Introduction

The **hal_microchip** is a set of register definitions for Microchip PIC32C/PIC32X SoC's.
The HAL is organized following the directory structure detailed below.

## Directory Structure

The directory is composed by six parts:
```
.
├── mplabx
├── include
├── pinconfigs
├── README.md
├── scripts
└── zephyr
```

- MPLABX SoC specific include libraries.
- Includes specific for these platforms
- devicetree bindings
- [Pin definitions](pinconfigs/README.md)
- [Scripts](scripts/README.md) used for code generation
- ZephyrRTOS module directory (`zephyr`).
- This README file.

# How to submit code

Any contribution should follow the `How to submit code` using as premisses the
[Zephyr Contribution Guidelines](https://docs.zephyrproject.org/latest/contribute/index.html).
For more information about External Modules see
[Modules Section](https://docs.zephyrproject.org/latest/develop/modules.html) in special
[Submitting Changes to Modules](https://docs.zephyrproject.org/latest/develop/modules.html#submitting-changes-to-modules)


## Repository specific guidelines

- When submitting an updated firmware library version, it is important to make
sure that the last firmware version will be merged. The library version is
used to be checked at [Microchip packs download site](http://packs.download.microchip.com/).
- When submitting an updated firmware library version the patchset already
applied should be rebased on top of the newer version.
- The patchset must be sent as an individual commit per SoC series to easy rebase.
- This repository is managed mainly on Linux. This means that changes should
be submitted using Linux LF format. Usually running a similar command to
`find * type f -print0 | xargs -0 dos2unix -k` should be enough.
- Make sure directory structure is respected.
- The `mplabx/[pic32cxsg]/include/<soc>/README` file should be updated accordingly.
If for some reason the file not exists it should be created.
- Directory names should be converted to lowercase.
- The recommendation is add **all fixups** in the `hal_atmel` instead on the
ZephyrRTOS project.

The above are general guidelines and exceptions could happen. In this case, the
exception should be addressed at review phase.

## The standard API

The PIC32C/PIC32M standard API define all information to access Microchip SoC's
peripherals. This library does not have namespaces and prefixes which
easily results in name collision with ZephyrRTOS core and libraries. To avoid
that situation, macros, enum values and function names should follow two
general rules:

- Public API functions must be prefixed with `pic32cxsg_` or .
- Public defines and enum values must be uppercase and prefixed with `PIC32CXSG_`
or .
179 changes: 179 additions & 0 deletions include/dt-bindings/pinctrl/microchip-pic32cxsg-pinctrl.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
/*
* Copyright (c) 2024 Microchip
* SPDX-License-Identifier: Apache-2.0
*/

#ifndef DT_BINDINGS_PINCTRL_MCHP_PIC32CXSG_PINCTRL_H_
#define DT_BINDINGS_PINCTRL_MCHP_PIC32CXSG_PINCTRL_H_

/*
* @name Atmel PIC32 gpio port list.
* @{
*/

#define PIC32CXSG_PINMUX_PORT_a 0U
#define PIC32CXSG_PINMUX_PORT_b 1U
#define PIC32CXSG_PINMUX_PORT_c 2U
#define PIC32CXSG_PINMUX_PORT_d 3U
#define PIC32CXSG_PINMUX_PORT_e 4U
#define PIC32CXSG_PINMUX_PORT_f 5U
#define PIC32CXSG_PINMUX_PORT_g 6U
#define PIC32CXSG_PINMUX_PORT_h 7U
#define PIC32CXSG_PINMUX_PORT_i 8U
#define PIC32CXSG_PINMUX_PORT_j 9U
#define PIC32CXSG_PINMUX_PORT_k 10U
#define PIC32CXSG_PINMUX_PORT_l 11U
#define PIC32CXSG_PINMUX_PORT_m 12U
#define PIC32CXSG_PINMUX_PORT_n 13U
#define PIC32CXSG_PINMUX_PORT_o 14U
#define PIC32CXSG_PINMUX_PORT_p 15U

/** @} */

/**
* @name Atmel PIC32 peripheral list.
* @{
*/

/** GPIO */
#define PIC32CXSG_PINMUX_PERIPH_gpio 0U
/** Peripherals */
#define PIC32CXSG_PINMUX_PERIPH_a 0U
#define PIC32CXSG_PINMUX_PERIPH_b 1U
#define PIC32CXSG_PINMUX_PERIPH_c 2U
#define PIC32CXSG_PINMUX_PERIPH_d 3U
#define PIC32CXSG_PINMUX_PERIPH_e 4U
#define PIC32CXSG_PINMUX_PERIPH_f 5U
#define PIC32CXSG_PINMUX_PERIPH_g 6U
#define PIC32CXSG_PINMUX_PERIPH_h 7U
#define PIC32CXSG_PINMUX_PERIPH_i 8U
#define PIC32CXSG_PINMUX_PERIPH_j 9U
#define PIC32CXSG_PINMUX_PERIPH_k 10U
#define PIC32CXSG_PINMUX_PERIPH_l 11U
#define PIC32CXSG_PINMUX_PERIPH_m 12U
#define PIC32CXSG_PINMUX_PERIPH_n 13U
/** Extra */
#define PIC32CXSG_PINMUX_PERIPH_x 0U
/** System */
#define PIC32CXSG_PINMUX_PERIPH_s 0U
/** LPM */
#define PIC32CXSG_PINMUX_PERIPH_lpm 0U
/** Wake-up pin sources */
#define PIC32CXSG_PINMUX_PERIPH_wkup0 0U
#define PIC32CXSG_PINMUX_PERIPH_wkup1 1U
#define PIC32CXSG_PINMUX_PERIPH_wkup2 2U
#define PIC32CXSG_PINMUX_PERIPH_wkup3 3U
#define PIC32CXSG_PINMUX_PERIPH_wkup4 4U
#define PIC32CXSG_PINMUX_PERIPH_wkup5 5U
#define PIC32CXSG_PINMUX_PERIPH_wkup6 6U
#define PIC32CXSG_PINMUX_PERIPH_wkup7 7U
#define PIC32CXSG_PINMUX_PERIPH_wkup8 8U
#define PIC32CXSG_PINMUX_PERIPH_wkup9 9U
#define PIC32CXSG_PINMUX_PERIPH_wkup10 10U
#define PIC32CXSG_PINMUX_PERIPH_wkup11 11U
#define PIC32CXSG_PINMUX_PERIPH_wkup12 12U
#define PIC32CXSG_PINMUX_PERIPH_wkup13 13U
#define PIC32CXSG_PINMUX_PERIPH_wkup14 14U
#define PIC32CXSG_PINMUX_PERIPH_wkup15 15U
/** @} */

/**
* @name Atmel PIC32 pin function list.
* @{
*/

/** Selects pin to be used as GPIO */
#define PIC32CXSG_PINMUX_FUNC_gpio 0U
/** Selects pin to be used as by some peripheral */
#define PIC32CXSG_PINMUX_FUNC_periph 1U
/** Selects pin to be used as extra function */
#define PIC32CXSG_PINMUX_FUNC_extra 2U
/** Selects pin to be used as system function */
#define PIC32CXSG_PINMUX_FUNC_system 3U
/** Selects and configure pin to be used in Low Power Mode */
#define PIC32CXSG_PINMUX_FUNC_lpm 4U
/** Selects and configure wake-up pin sources Low Power Mode */
#define PIC32CXSG_PINMUX_FUNC_wakeup 5U

/** @} */

/**
* @name Atmel PIC32 pinmux bit field mask and positions.
* @{
*/

/** Pinmux bit field position. */
#define PIC32_PINCTRL_PINMUX_POS (16U)
/** Pinmux bit field mask. */
#define PIC32_PINCTRL_PINMUX_MASK (0xFFFF)

/** Port field mask. */
#define PIC32CXSG_PINMUX_PORT_MSK (0xFU)
/** Port field position. */
#define PIC32CXSG_PINMUX_PORT_POS (0U)
/** Pin field mask. */
#define PIC32CXSG_PINMUX_PIN_MSK (0x1FU)
/** Pin field position. */
#define PIC32CXSG_PINMUX_PIN_POS (PIC32CXSG_PINMUX_PORT_POS + 4U)
/** Function field mask. */
#define PIC32CXSG_PINMUX_FUNC_MSK (0x7U)
/** Function field position. */
#define PIC32CXSG_PINMUX_FUNC_POS (PIC32CXSG_PINMUX_PIN_POS + 5U)
/** Peripheral field mask. */
#define PIC32CXSG_PINMUX_PERIPH_MSK (0xFU)
/** Peripheral field position. */
#define PIC32CXSG_PINMUX_PERIPH_POS (PIC32CXSG_PINMUX_FUNC_POS + 3U)

/** @} */

/**
* @brief Microchip PIC32CXSG pinmux bit field.
* @anchor PIC32CXSG_PINMUX
*
* Fields:
*
* - 0..3: port
* - 4..8: pin_num
* - 9..11: func
* - 12..15: pin_mux
*
* @param port Port ('A'..'P')
* @param pin Pin (0..31)
* @param func Function (GPIO, Peripheral, System, Extra, LPM - 0..4)
* @param pin_mux Peripheral based on the Function selected (0..15)
*/
#define PIC32CXSG_PINMUX(port, pin_num, pin_mux, func) \
((((PIC32CXSG_PINMUX_PORT_##port) & PIC32CXSG_PINMUX_PORT_MSK) \
<< PIC32CXSG_PINMUX_PORT_POS) | \
(((pin_num) & PIC32CXSG_PINMUX_PIN_MSK) \
<< PIC32CXSG_PINMUX_PIN_POS) | \
(((PIC32CXSG_PINMUX_FUNC_##func) & PIC32CXSG_PINMUX_FUNC_MSK) \
<< PIC32CXSG_PINMUX_FUNC_POS) | \
(((PIC32CXSG_PINMUX_PERIPH_##pin_mux) & PIC32CXSG_PINMUX_PERIPH_MSK) \
<< PIC32CXSG_PINMUX_PERIPH_POS))

/**
* Obtain Pinmux value from pinctrl_soc_pin_t configuration.
*
* @param pincfg pinctrl_soc_pin_t bit field value.
*/
#define PIC32CXSG_PINMUX_GET(pincfg) \
(((pincfg) >> PIC32CXSG_PINCTRL_PINMUX_POS) & PIC32CXSG_PINCTRL_PINMUX_MASK)

#define PIC32CXSG_PINMUX_PORT_GET(pincfg) \
((PIC32CXSG_PINMUX_GET(pincfg) >> PIC32CXSG_PINMUX_PORT_POS) \
& PIC32CXSG_PINMUX_PORT_MSK)

#define PIC32CXSG_PINMUX_PIN_GET(pincfg) \
((PIC32CXSG_PINMUX_GET(pincfg) >> PIC32CXSG_PINMUX_PIN_POS) \
& PIC32CXSG_PINMUX_PIN_MSK)

#define PIC32CXSG_PINMUX_FUNC_GET(pincfg) \
((PIC32CXSG_PINMUX_GET(pincfg) >> PIC32CXSG_PINMUX_FUNC_POS) \
& PIC32CXSG_PINMUX_FUNC_MSK)

#define PIC32CXSG_PINMUX_PERIPH_GET(pincfg) \
((PIC32CXSG_PINMUX_GET(pincfg) >> PIC32CXSG_PINMUX_PERIPH_POS) \
& PIC32CXSG_PINMUX_PERIPH_MSK)

#endif /* DT_BINDINGS_PINCTRL_MCHP_PIC32CXSG_PINCTRL_H_ */
Loading

0 comments on commit 7902150

Please sign in to comment.