mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-27 14:14:37 +08:00
pinctrl: rockchip: Clean the unused type and label
As the mux/pull/drive feature implement at own file, the type and label are not necessary. Signed-off-by: David Wu <david.wu@rock-chips.com> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
69a38f81bb
commit
623aca8830
@ -83,8 +83,6 @@ static struct rockchip_pin_bank rk3036_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rk3036_pin_ctrl = {
|
||||
.pin_banks = rk3036_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rk3036_pin_banks),
|
||||
.label = "RK3036-GPIO",
|
||||
.type = RK3036,
|
||||
.grf_mux_offset = 0xa8,
|
||||
.set_mux = rk3036_set_mux,
|
||||
.set_pull = rk3036_set_pull,
|
||||
|
@ -183,8 +183,6 @@ static struct rockchip_pin_bank rk3128_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rk3128_pin_ctrl = {
|
||||
.pin_banks = rk3128_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rk3128_pin_banks),
|
||||
.label = "RK3128-GPIO",
|
||||
.type = RK3128,
|
||||
.grf_mux_offset = 0xa8,
|
||||
.iomux_recalced = rk3128_mux_recalced_data,
|
||||
.niomux_recalced = ARRAY_SIZE(rk3128_mux_recalced_data),
|
||||
|
@ -108,8 +108,6 @@ static struct rockchip_pin_bank rk3188_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rk3188_pin_ctrl = {
|
||||
.pin_banks = rk3188_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rk3188_pin_banks),
|
||||
.label = "RK3188-GPIO",
|
||||
.type = RK3188,
|
||||
.grf_mux_offset = 0x60,
|
||||
.set_mux = rk3188_set_mux,
|
||||
.set_pull = rk3188_set_pull,
|
||||
|
@ -268,8 +268,6 @@ static struct rockchip_pin_bank rk3228_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rk3228_pin_ctrl = {
|
||||
.pin_banks = rk3228_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rk3228_pin_banks),
|
||||
.label = "RK3228-GPIO",
|
||||
.type = RK3288,
|
||||
.grf_mux_offset = 0x0,
|
||||
.iomux_routes = rk3228_mux_route_data,
|
||||
.niomux_routes = ARRAY_SIZE(rk3228_mux_route_data),
|
||||
|
@ -223,8 +223,6 @@ static struct rockchip_pin_bank rk3288_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rk3288_pin_ctrl = {
|
||||
.pin_banks = rk3288_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rk3288_pin_banks),
|
||||
.label = "RK3288-GPIO",
|
||||
.type = RK3288,
|
||||
.grf_mux_offset = 0x0,
|
||||
.pmu_mux_offset = 0x84,
|
||||
.iomux_routes = rk3288_mux_route_data,
|
||||
|
@ -281,8 +281,6 @@ static struct rockchip_pin_bank rk3328_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rk3328_pin_ctrl = {
|
||||
.pin_banks = rk3328_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rk3328_pin_banks),
|
||||
.label = "RK3328-GPIO",
|
||||
.type = RK3288,
|
||||
.grf_mux_offset = 0x0,
|
||||
.iomux_recalced = rk3328_mux_recalced_data,
|
||||
.niomux_recalced = ARRAY_SIZE(rk3328_mux_recalced_data),
|
||||
|
@ -155,8 +155,6 @@ static struct rockchip_pin_bank rk3368_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rk3368_pin_ctrl = {
|
||||
.pin_banks = rk3368_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rk3368_pin_banks),
|
||||
.label = "RK3368-GPIO",
|
||||
.type = RK3368,
|
||||
.grf_mux_offset = 0x0,
|
||||
.pmu_mux_offset = 0x0,
|
||||
.set_mux = rk3368_set_mux,
|
||||
|
@ -290,8 +290,6 @@ static struct rockchip_pin_bank rk3399_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rk3399_pin_ctrl = {
|
||||
.pin_banks = rk3399_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rk3399_pin_banks),
|
||||
.label = "RK3399-GPIO",
|
||||
.type = RK3399,
|
||||
.grf_mux_offset = 0xe000,
|
||||
.pmu_mux_offset = 0x0,
|
||||
.grf_drv_offset = 0xe100,
|
||||
|
@ -8,16 +8,6 @@
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
enum rockchip_pinctrl_type {
|
||||
RV1108,
|
||||
RK3036,
|
||||
RK3128,
|
||||
RK3188,
|
||||
RK3288,
|
||||
RK3368,
|
||||
RK3399,
|
||||
};
|
||||
|
||||
/**
|
||||
* Encode variants of iomux registers into a type variable
|
||||
*/
|
||||
@ -266,8 +256,6 @@ struct rockchip_pin_ctrl {
|
||||
struct rockchip_pin_bank *pin_banks;
|
||||
u32 nr_banks;
|
||||
u32 nr_pins;
|
||||
char *label;
|
||||
enum rockchip_pinctrl_type type;
|
||||
int grf_mux_offset;
|
||||
int pmu_mux_offset;
|
||||
int grf_drv_offset;
|
||||
|
@ -250,8 +250,6 @@ static struct rockchip_pin_bank rv1108_pin_banks[] = {
|
||||
static struct rockchip_pin_ctrl rv1108_pin_ctrl = {
|
||||
.pin_banks = rv1108_pin_banks,
|
||||
.nr_banks = ARRAY_SIZE(rv1108_pin_banks),
|
||||
.label = "RV1108-GPIO",
|
||||
.type = RV1108,
|
||||
.grf_mux_offset = 0x10,
|
||||
.pmu_mux_offset = 0x0,
|
||||
.iomux_recalced = rv1108_mux_recalced_data,
|
||||
|
Loading…
Reference in New Issue
Block a user