30 lines
796 B
C
30 lines
796 B
C
/*
|
|
* Copyright (c) 2022 Antmicro <www.antmicro.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_SOC_RISCV_RISCV_PRIVILEGED_SIFIVE_FREEDOM_PINCTRL_H_
|
|
#define ZEPHYR_SOC_RISCV_RISCV_PRIVILEGED_SIFIVE_FREEDOM_PINCTRL_H_
|
|
|
|
#include <zephyr/types.h>
|
|
|
|
typedef struct pinctrl_soc_pin_t {
|
|
uint8_t pin;
|
|
uint8_t iof;
|
|
} pinctrl_soc_pin_t;
|
|
|
|
#define SIFIVE_DT_PIN(node_id) \
|
|
{ \
|
|
.pin = DT_PROP_BY_IDX(node_id, pinmux, 0), \
|
|
.iof = DT_PROP_BY_IDX(node_id, pinmux, 1) \
|
|
},
|
|
|
|
#define Z_PINCTRL_STATE_PIN_INIT(node_id, prop, idx) \
|
|
SIFIVE_DT_PIN(DT_PROP_BY_IDX(node_id, prop, idx))
|
|
|
|
#define Z_PINCTRL_STATE_PINS_INIT(node_id, prop) \
|
|
{ DT_FOREACH_PROP_ELEM(node_id, prop, Z_PINCTRL_STATE_PIN_INIT) }
|
|
|
|
#endif /* ZEPHYR_SOC_RISCV_RISCV_PRIVILEGED_SIFIVE_FREEDOM_PINCTRL_H_ */
|