mirror of https://gitee.com/openkylin/linux.git
pinctrl: zynqmp: some code cleanups
Some minor code cleanups and updates which includes - Mention module name under help in Kconfig. - Remove extra lines and duplicate Pin range checks. - Replace 'return ret' with 'return 0' in success path. - Copyright year update. - use devm_pinctrl_register() instead pinctrl_register() in probe. Signed-off-by: Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com> Link: https://lore.kernel.org/r/1624273214-66849-1-git-send-email-lakshmi.sai.krishna.potthuri@xilinx.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
0c3ae641a2
commit
fa99e70138
|
@ -336,6 +336,8 @@ config PINCTRL_ZYNQMP
|
||||||
Configuration can include the mux function to select on those
|
Configuration can include the mux function to select on those
|
||||||
pin(s)/group(s), and various pin configuration parameters
|
pin(s)/group(s), and various pin configuration parameters
|
||||||
such as pull-up, slew rate, etc.
|
such as pull-up, slew rate, etc.
|
||||||
|
This driver can also be built as a module. If so, the module
|
||||||
|
will be called pinctrl-zynqmp.
|
||||||
|
|
||||||
config PINCTRL_INGENIC
|
config PINCTRL_INGENIC
|
||||||
bool "Pinctrl driver for the Ingenic JZ47xx SoCs"
|
bool "Pinctrl driver for the Ingenic JZ47xx SoCs"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
/*
|
/*
|
||||||
* ZynqMP pin controller
|
* ZynqMP pin controller
|
||||||
*
|
*
|
||||||
* Copyright (C) 2020 Xilinx, Inc.
|
* Copyright (C) 2020, 2021 Xilinx, Inc.
|
||||||
*
|
*
|
||||||
* Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com>
|
* Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com>
|
||||||
* Rajan Vaja <rajan.vaja@xilinx.com>
|
* Rajan Vaja <rajan.vaja@xilinx.com>
|
||||||
|
@ -252,9 +252,6 @@ static int zynqmp_pinconf_cfg_get(struct pinctrl_dev *pctldev,
|
||||||
unsigned int arg, param = pinconf_to_config_param(*config);
|
unsigned int arg, param = pinconf_to_config_param(*config);
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (pin >= zynqmp_desc.npins)
|
|
||||||
return -EOPNOTSUPP;
|
|
||||||
|
|
||||||
switch (param) {
|
switch (param) {
|
||||||
case PIN_CONFIG_SLEW_RATE:
|
case PIN_CONFIG_SLEW_RATE:
|
||||||
param = PM_PINCTRL_CONFIG_SLEW_RATE;
|
param = PM_PINCTRL_CONFIG_SLEW_RATE;
|
||||||
|
@ -317,7 +314,7 @@ static int zynqmp_pinconf_cfg_get(struct pinctrl_dev *pctldev,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ret = -EOPNOTSUPP;
|
ret = -ENOTSUPP;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -348,9 +345,6 @@ static int zynqmp_pinconf_cfg_set(struct pinctrl_dev *pctldev,
|
||||||
{
|
{
|
||||||
int i, ret;
|
int i, ret;
|
||||||
|
|
||||||
if (pin >= zynqmp_desc.npins)
|
|
||||||
return -EOPNOTSUPP;
|
|
||||||
|
|
||||||
for (i = 0; i < num_configs; i++) {
|
for (i = 0; i < num_configs; i++) {
|
||||||
unsigned int param = pinconf_to_config_param(configs[i]);
|
unsigned int param = pinconf_to_config_param(configs[i]);
|
||||||
unsigned int arg = pinconf_to_config_argument(configs[i]);
|
unsigned int arg = pinconf_to_config_argument(configs[i]);
|
||||||
|
@ -428,7 +422,7 @@ static int zynqmp_pinconf_cfg_set(struct pinctrl_dev *pctldev,
|
||||||
dev_warn(pctldev->dev,
|
dev_warn(pctldev->dev,
|
||||||
"unsupported configuration parameter '%u'\n",
|
"unsupported configuration parameter '%u'\n",
|
||||||
param);
|
param);
|
||||||
ret = -EOPNOTSUPP;
|
ret = -ENOTSUPP;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -504,7 +498,7 @@ static int zynqmp_pinctrl_get_function_groups(u32 fid, u32 index, u16 *groups)
|
||||||
|
|
||||||
memcpy(groups, &payload[1], PINCTRL_GET_FUNC_GROUPS_RESP_LEN);
|
memcpy(groups, &payload[1], PINCTRL_GET_FUNC_GROUPS_RESP_LEN);
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynqmp_pinctrl_get_func_num_groups(u32 fid, unsigned int *ngroups)
|
static int zynqmp_pinctrl_get_func_num_groups(u32 fid, unsigned int *ngroups)
|
||||||
|
@ -522,7 +516,7 @@ static int zynqmp_pinctrl_get_func_num_groups(u32 fid, unsigned int *ngroups)
|
||||||
|
|
||||||
*ngroups = payload[1];
|
*ngroups = payload[1];
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -533,16 +527,16 @@ static int zynqmp_pinctrl_get_func_num_groups(u32 fid, unsigned int *ngroups)
|
||||||
* @groups: Groups data.
|
* @groups: Groups data.
|
||||||
*
|
*
|
||||||
* Query firmware to get group IDs for each function. Firmware returns
|
* Query firmware to get group IDs for each function. Firmware returns
|
||||||
* group IDs. Based on group index for the function, group names in
|
* group IDs. Based on the group index for the function, group names in
|
||||||
* the function are stored. For example, the first group in "eth0" function
|
* the function are stored. For example, the first group in "eth0" function
|
||||||
* is named as "eth0_0" and second group as "eth0_1" and so on.
|
* is named as "eth0_0" and the second group as "eth0_1" and so on.
|
||||||
*
|
*
|
||||||
* Based on the group ID received from the firmware, function stores name of
|
* Based on the group ID received from the firmware, function stores name of
|
||||||
* the group for that group ID. For example, if "eth0" first group ID
|
* the group for that group ID. For example, if "eth0" first group ID
|
||||||
* is x, groups[x] name will be stored as "eth0_0".
|
* is x, groups[x] name will be stored as "eth0_0".
|
||||||
*
|
*
|
||||||
* Once done for each function, each function would have its group names
|
* Once done for each function, each function would have its group names
|
||||||
* and each groups would also have their names.
|
* and each group would also have their names.
|
||||||
*
|
*
|
||||||
* Return: 0 on success else error code.
|
* Return: 0 on success else error code.
|
||||||
*/
|
*/
|
||||||
|
@ -552,7 +546,7 @@ static int zynqmp_pinctrl_prepare_func_groups(struct device *dev, u32 fid,
|
||||||
{
|
{
|
||||||
u16 resp[NUM_GROUPS_PER_RESP] = {0};
|
u16 resp[NUM_GROUPS_PER_RESP] = {0};
|
||||||
const char **fgroups;
|
const char **fgroups;
|
||||||
int ret = 0, index, i;
|
int ret, index, i;
|
||||||
|
|
||||||
fgroups = devm_kzalloc(dev, sizeof(*fgroups) * func->ngroups, GFP_KERNEL);
|
fgroups = devm_kzalloc(dev, sizeof(*fgroups) * func->ngroups, GFP_KERNEL);
|
||||||
if (!fgroups)
|
if (!fgroups)
|
||||||
|
@ -588,7 +582,7 @@ static int zynqmp_pinctrl_prepare_func_groups(struct device *dev, u32 fid,
|
||||||
done:
|
done:
|
||||||
func->groups = fgroups;
|
func->groups = fgroups;
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void zynqmp_pinctrl_get_function_name(u32 fid, char *name)
|
static void zynqmp_pinctrl_get_function_name(u32 fid, char *name)
|
||||||
|
@ -622,7 +616,7 @@ static int zynqmp_pinctrl_get_num_functions(unsigned int *nfuncs)
|
||||||
|
|
||||||
*nfuncs = payload[1];
|
*nfuncs = payload[1];
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynqmp_pinctrl_get_pin_groups(u32 pin, u32 index, u16 *groups)
|
static int zynqmp_pinctrl_get_pin_groups(u32 pin, u32 index, u16 *groups)
|
||||||
|
@ -641,7 +635,7 @@ static int zynqmp_pinctrl_get_pin_groups(u32 pin, u32 index, u16 *groups)
|
||||||
|
|
||||||
memcpy(groups, &payload[1], PINCTRL_GET_PIN_GROUPS_RESP_LEN);
|
memcpy(groups, &payload[1], PINCTRL_GET_PIN_GROUPS_RESP_LEN);
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void zynqmp_pinctrl_group_add_pin(struct zynqmp_pctrl_group *group,
|
static void zynqmp_pinctrl_group_add_pin(struct zynqmp_pctrl_group *group,
|
||||||
|
@ -660,7 +654,7 @@ static void zynqmp_pinctrl_group_add_pin(struct zynqmp_pctrl_group *group,
|
||||||
* Based on the firmware response(group IDs for the pin), add
|
* Based on the firmware response(group IDs for the pin), add
|
||||||
* pin number to the respective group's pin array.
|
* pin number to the respective group's pin array.
|
||||||
*
|
*
|
||||||
* Once all pins are queries, each groups would have its number
|
* Once all pins are queries, each group would have its number
|
||||||
* of pins and pin numbers data.
|
* of pins and pin numbers data.
|
||||||
*
|
*
|
||||||
* Return: 0 on success else error code.
|
* Return: 0 on success else error code.
|
||||||
|
@ -689,7 +683,7 @@ static int zynqmp_pinctrl_create_pin_groups(struct device *dev,
|
||||||
index += NUM_GROUPS_PER_RESP;
|
index += NUM_GROUPS_PER_RESP;
|
||||||
} while (index <= MAX_PIN_GROUPS);
|
} while (index <= MAX_PIN_GROUPS);
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -727,7 +721,7 @@ static int zynqmp_pinctrl_prepare_group_pins(struct device *dev,
|
||||||
* prepare pin control driver data.
|
* prepare pin control driver data.
|
||||||
*
|
*
|
||||||
* Query number of functions and number of function groups (number
|
* Query number of functions and number of function groups (number
|
||||||
* of groups in given function) to allocate required memory buffers
|
* of groups in the given function) to allocate required memory buffers
|
||||||
* for functions and groups. Once buffers are allocated to store
|
* for functions and groups. Once buffers are allocated to store
|
||||||
* functions and groups data, query and store required information
|
* functions and groups data, query and store required information
|
||||||
* (number of groups and group names for each function, number of
|
* (number of groups and group names for each function, number of
|
||||||
|
@ -778,7 +772,7 @@ static int zynqmp_pinctrl_prepare_function_info(struct device *dev,
|
||||||
pctrl->funcs = funcs;
|
pctrl->funcs = funcs;
|
||||||
pctrl->groups = groups;
|
pctrl->groups = groups;
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynqmp_pinctrl_get_num_pins(unsigned int *npins)
|
static int zynqmp_pinctrl_get_num_pins(unsigned int *npins)
|
||||||
|
@ -795,7 +789,7 @@ static int zynqmp_pinctrl_get_num_pins(unsigned int *npins)
|
||||||
|
|
||||||
*npins = payload[1];
|
*npins = payload[1];
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -853,19 +847,17 @@ static int zynqmp_pinctrl_probe(struct platform_device *pdev)
|
||||||
&zynqmp_desc.pins,
|
&zynqmp_desc.pins,
|
||||||
&zynqmp_desc.npins);
|
&zynqmp_desc.npins);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(&pdev->dev, "pin desc prepare fail with %d\n",
|
dev_err(&pdev->dev, "pin desc prepare fail with %d\n", ret);
|
||||||
ret);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = zynqmp_pinctrl_prepare_function_info(&pdev->dev, pctrl);
|
ret = zynqmp_pinctrl_prepare_function_info(&pdev->dev, pctrl);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(&pdev->dev, "function info prepare fail with %d\n",
|
dev_err(&pdev->dev, "function info prepare fail with %d\n", ret);
|
||||||
ret);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
pctrl->pctrl = pinctrl_register(&zynqmp_desc, &pdev->dev, pctrl);
|
pctrl->pctrl = devm_pinctrl_register(&pdev->dev, &zynqmp_desc, pctrl);
|
||||||
if (IS_ERR(pctrl->pctrl))
|
if (IS_ERR(pctrl->pctrl))
|
||||||
return PTR_ERR(pctrl->pctrl);
|
return PTR_ERR(pctrl->pctrl);
|
||||||
|
|
||||||
|
@ -887,7 +879,6 @@ static const struct of_device_id zynqmp_pinctrl_of_match[] = {
|
||||||
{ .compatible = "xlnx,zynqmp-pinctrl" },
|
{ .compatible = "xlnx,zynqmp-pinctrl" },
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
MODULE_DEVICE_TABLE(of, zynqmp_pinctrl_of_match);
|
MODULE_DEVICE_TABLE(of, zynqmp_pinctrl_of_match);
|
||||||
|
|
||||||
static struct platform_driver zynqmp_pinctrl_driver = {
|
static struct platform_driver zynqmp_pinctrl_driver = {
|
||||||
|
@ -898,7 +889,6 @@ static struct platform_driver zynqmp_pinctrl_driver = {
|
||||||
.probe = zynqmp_pinctrl_probe,
|
.probe = zynqmp_pinctrl_probe,
|
||||||
.remove = zynqmp_pinctrl_remove,
|
.remove = zynqmp_pinctrl_remove,
|
||||||
};
|
};
|
||||||
|
|
||||||
module_platform_driver(zynqmp_pinctrl_driver);
|
module_platform_driver(zynqmp_pinctrl_driver);
|
||||||
|
|
||||||
MODULE_AUTHOR("Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com>");
|
MODULE_AUTHOR("Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com>");
|
||||||
|
|
Loading…
Reference in New Issue