mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
401d1c4f5d
Move this out of the common header and include it only where needed. In a number of cases this requires adding "struct udevice;" to avoid adding another large header or in other cases replacing / adding missing header files that had been pulled in, very indirectly. Finally, we have a few cases where we did not need to include <asm/global_data.h> at all, so remove that include. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
31 lines
663 B
C
31 lines
663 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
|
|
|
|
struct udevice;
|
|
|
|
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;
|
|
extern struct msm_pinctrl_data apq8096_data;
|
|
|
|
#endif
|