mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
ad97051b7f
This patch adds pinmux and pinctrl driver for TLMM subsystem in snapdragon chipsets. Currently, supporting only 8016, but implementation is generic and 8096 can be added easily. Driver is using the generic dt-bindings and doesn't introduce any new bindings (yet). Signed-off-by: Ramon Fried <ramon.fried@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
30 lines
622 B
C
30 lines
622 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Qualcomm Pin control
|
|
*
|
|
* (C) Copyright 2018 Ramon Fried <ramon.fried@gmail.com>
|
|
*
|
|
*/
|
|
#ifndef _PINCTRL_SNAPDRAGON_H
|
|
#define _PINCTRL_SNAPDRAGON_H
|
|
|
|
#include <common.h>
|
|
|
|
struct msm_pinctrl_data {
|
|
int pin_count;
|
|
int functions_count;
|
|
const char *(*get_function_name)(struct udevice *dev,
|
|
unsigned int selector);
|
|
unsigned int (*get_function_mux)(unsigned int selector);
|
|
const char *(*get_pin_name)(struct udevice *dev,
|
|
unsigned int selector);
|
|
};
|
|
|
|
struct pinctrl_function {
|
|
const char *name;
|
|
int val;
|
|
};
|
|
|
|
extern struct msm_pinctrl_data apq8016_data;
|
|
|
|
#endif
|