mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 12:42:34 +00:00
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
119 lines
2.4 KiB
C
119 lines
2.4 KiB
C
/*
|
|
* Copyright (c) 2015 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* Public APIs for Pinmux drivers
|
|
*/
|
|
|
|
#ifndef __INCLUDE_PINMUX_H
|
|
#define __INCLUDE_PINMUX_H
|
|
|
|
/**
|
|
* @brief Pinmux Interface
|
|
* @defgroup pinmux_interface Pinmux Interface
|
|
* @ingroup io_interfaces
|
|
* @{
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <device.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define PINMUX_FUNC_A 0
|
|
#define PINMUX_FUNC_B 1
|
|
#define PINMUX_FUNC_C 2
|
|
#define PINMUX_FUNC_D 3
|
|
|
|
#define PINMUX_PULLUP_ENABLE (0x1)
|
|
#define PINMUX_PULLUP_DISABLE (0x0)
|
|
|
|
#define PINMUX_INPUT_ENABLED (0x1)
|
|
#define PINMUX_OUTPUT_ENABLED (0x0)
|
|
|
|
/**
|
|
* @typedef pmux_set
|
|
* @brief Callback API upon setting a PIN's function
|
|
* See pinmux_pin_set() for argument description
|
|
*/
|
|
typedef int (*pmux_set)(struct device *dev, uint32_t pin, uint32_t func);
|
|
/**
|
|
* @typedef pmux_get
|
|
* @brief Callback API upon getting a PIN's function
|
|
* See pinmux_pin_get() for argument description
|
|
*/
|
|
typedef int (*pmux_get)(struct device *dev, uint32_t pin, uint32_t *func);
|
|
/**
|
|
* @typedef pmux_pullup
|
|
* @brief Callback API upon setting a PIN's pullup
|
|
* See pinmix_pin_pullup() for argument description
|
|
*/
|
|
typedef int (*pmux_pullup)(struct device *dev, uint32_t pin, uint8_t func);
|
|
/**
|
|
* @typedef pmux_input
|
|
* @brief Callback API upon setting a PIN's input function
|
|
* See pinmux_input() for argument description
|
|
*/
|
|
typedef int (*pmux_input)(struct device *dev, uint32_t pin, uint8_t func);
|
|
|
|
struct pinmux_driver_api {
|
|
pmux_set set;
|
|
pmux_get get;
|
|
pmux_pullup pullup;
|
|
pmux_input input;
|
|
};
|
|
|
|
|
|
static inline int pinmux_pin_set(struct device *dev,
|
|
uint32_t pin,
|
|
uint32_t func)
|
|
{
|
|
const struct pinmux_driver_api *api = dev->driver_api;
|
|
|
|
return api->set(dev, pin, func);
|
|
}
|
|
|
|
static inline int pinmux_pin_get(struct device *dev,
|
|
uint32_t pin,
|
|
uint32_t *func)
|
|
{
|
|
const struct pinmux_driver_api *api = dev->driver_api;
|
|
|
|
return api->get(dev, pin, func);
|
|
}
|
|
|
|
static inline int pinmux_pin_pullup(struct device *dev,
|
|
uint32_t pin,
|
|
uint8_t func)
|
|
{
|
|
const struct pinmux_driver_api *api = dev->driver_api;
|
|
|
|
return api->pullup(dev, pin, func);
|
|
}
|
|
|
|
static inline int pinmux_pin_input_enable(struct device *dev,
|
|
uint32_t pin,
|
|
uint8_t func)
|
|
{
|
|
const struct pinmux_driver_api *api = dev->driver_api;
|
|
|
|
return api->input(dev, pin, func);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/**
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#endif /* __INCLUDE_PINMUX_H */
|