2015-09-25 01:57:06 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Intel Corporation
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-09-25 01:57:06 +08:00
|
|
|
*/
|
2016-02-08 03:34:13 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Public APIs for Pinmux drivers
|
|
|
|
*/
|
|
|
|
|
2015-09-25 01:57:06 +08:00
|
|
|
#ifndef __INCLUDE_PINMUX_H
|
|
|
|
#define __INCLUDE_PINMUX_H
|
|
|
|
|
2015-10-26 18:18:44 +08:00
|
|
|
/**
|
|
|
|
* @brief Pinmux Interface
|
|
|
|
* @defgroup pinmux_interface Pinmux Interface
|
|
|
|
* @ingroup io_interfaces
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
Introduce new sized integer typedefs
This is a start to move away from the C99 {u}int{8,16,32,64}_t types to
Zephyr defined u{8,16,32,64}_t and s{8,16,32,64}_t. This allows Zephyr
to define the sized types in a consistent manor across all the
architectures we support and not conflict with what various compilers
and libc might do with regards to the C99 types.
We introduce <zephyr/types.h> as part of this and have it include
<stdint.h> for now until we transition all the code away from the C99
types.
We go with u{8,16,32,64}_t and s{8,16,32,64}_t as there are some
existing variables defined u8 & u16 as well as to be consistent with
Zephyr naming conventions.
Jira: ZEP-2051
Change-Id: I451fed0623b029d65866622e478225dfab2c0ca8
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-04-19 23:32:08 +08:00
|
|
|
#include <zephyr/types.h>
|
2015-09-25 01:57:06 +08:00
|
|
|
#include <device.h>
|
|
|
|
|
2016-01-23 01:38:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-09-25 01:57:06 +08:00
|
|
|
#define PINMUX_FUNC_A 0
|
|
|
|
#define PINMUX_FUNC_B 1
|
|
|
|
#define PINMUX_FUNC_C 2
|
|
|
|
#define PINMUX_FUNC_D 3
|
2017-06-27 08:09:03 +08:00
|
|
|
#define PINMUX_FUNC_E 4
|
|
|
|
#define PINMUX_FUNC_F 5
|
2018-01-31 03:44:05 +08:00
|
|
|
#define PINMUX_FUNC_G 6
|
|
|
|
#define PINMUX_FUNC_H 7
|
2015-09-25 01:57:06 +08:00
|
|
|
|
2015-12-05 07:05:23 +08:00
|
|
|
#define PINMUX_PULLUP_ENABLE (0x1)
|
|
|
|
#define PINMUX_PULLUP_DISABLE (0x0)
|
|
|
|
|
|
|
|
#define PINMUX_INPUT_ENABLED (0x1)
|
|
|
|
#define PINMUX_OUTPUT_ENABLED (0x0)
|
|
|
|
|
2016-06-16 05:18:38 +08:00
|
|
|
/**
|
|
|
|
* @typedef pmux_set
|
|
|
|
* @brief Callback API upon setting a PIN's function
|
|
|
|
* See pinmux_pin_set() for argument description
|
|
|
|
*/
|
2017-04-21 23:55:34 +08:00
|
|
|
typedef int (*pmux_set)(struct device *dev, u32_t pin, u32_t func);
|
2016-06-16 05:18:38 +08:00
|
|
|
/**
|
|
|
|
* @typedef pmux_get
|
|
|
|
* @brief Callback API upon getting a PIN's function
|
|
|
|
* See pinmux_pin_get() for argument description
|
|
|
|
*/
|
2017-04-21 23:55:34 +08:00
|
|
|
typedef int (*pmux_get)(struct device *dev, u32_t pin, u32_t *func);
|
2016-06-16 05:18:38 +08:00
|
|
|
/**
|
|
|
|
* @typedef pmux_pullup
|
|
|
|
* @brief Callback API upon setting a PIN's pullup
|
|
|
|
* See pinmix_pin_pullup() for argument description
|
|
|
|
*/
|
2017-04-21 23:55:34 +08:00
|
|
|
typedef int (*pmux_pullup)(struct device *dev, u32_t pin, u8_t func);
|
2016-06-16 05:18:38 +08:00
|
|
|
/**
|
|
|
|
* @typedef pmux_input
|
|
|
|
* @brief Callback API upon setting a PIN's input function
|
|
|
|
* See pinmux_input() for argument description
|
|
|
|
*/
|
2017-04-21 23:55:34 +08:00
|
|
|
typedef int (*pmux_input)(struct device *dev, u32_t pin, u8_t func);
|
2015-09-25 01:57:06 +08:00
|
|
|
|
|
|
|
struct pinmux_driver_api {
|
|
|
|
pmux_set set;
|
|
|
|
pmux_get get;
|
2015-12-05 07:05:23 +08:00
|
|
|
pmux_pullup pullup;
|
|
|
|
pmux_input input;
|
2015-09-25 01:57:06 +08:00
|
|
|
};
|
|
|
|
|
2018-05-08 03:00:55 +08:00
|
|
|
static inline int pinmux_pin_set(struct device *dev, u32_t pin, u32_t func)
|
2015-09-25 01:57:06 +08:00
|
|
|
{
|
2016-10-22 17:02:12 +08:00
|
|
|
const struct pinmux_driver_api *api = dev->driver_api;
|
2015-09-25 01:57:06 +08:00
|
|
|
|
|
|
|
return api->set(dev, pin, func);
|
|
|
|
}
|
|
|
|
|
2018-05-08 03:00:55 +08:00
|
|
|
static inline int pinmux_pin_get(struct device *dev, u32_t pin, u32_t *func)
|
2015-09-25 01:57:06 +08:00
|
|
|
{
|
2016-10-22 17:02:12 +08:00
|
|
|
const struct pinmux_driver_api *api = dev->driver_api;
|
2015-09-25 01:57:06 +08:00
|
|
|
|
|
|
|
return api->get(dev, pin, func);
|
|
|
|
}
|
|
|
|
|
2018-05-08 03:00:55 +08:00
|
|
|
static inline int pinmux_pin_pullup(struct device *dev, u32_t pin, u8_t func)
|
2015-12-05 07:05:23 +08:00
|
|
|
{
|
2016-10-22 17:02:12 +08:00
|
|
|
const struct pinmux_driver_api *api = dev->driver_api;
|
2015-12-05 07:05:23 +08:00
|
|
|
|
|
|
|
return api->pullup(dev, pin, func);
|
|
|
|
}
|
|
|
|
|
2018-05-08 03:00:55 +08:00
|
|
|
static inline int pinmux_pin_input_enable(struct device *dev, u32_t pin,
|
|
|
|
u8_t func)
|
2015-12-05 07:05:23 +08:00
|
|
|
{
|
2016-10-22 17:02:12 +08:00
|
|
|
const struct pinmux_driver_api *api = dev->driver_api;
|
2015-12-05 07:05:23 +08:00
|
|
|
|
|
|
|
return api->input(dev, pin, func);
|
|
|
|
}
|
|
|
|
|
2016-01-23 01:38:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-10-26 18:18:44 +08:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
2016-01-23 01:38:49 +08:00
|
|
|
|
2015-09-25 01:57:06 +08:00
|
|
|
#endif /* __INCLUDE_PINMUX_H */
|