summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/pwm.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@google.com>2016-05-05 14:32:31 +0530
committerGreg Kroah-Hartman <gregkh@google.com>2016-05-05 13:38:57 -0700
commit320549086d1e985c09fd6635075ab45a3421038e (patch)
tree333b6b7a46a583bee48ad48f509bc4c36ebe4064 /drivers/staging/greybus/pwm.c
parent7dbe1f497b445ead3a6c5f0895d002960a2b07f2 (diff)
downloadop-kernel-dev-320549086d1e985c09fd6635075ab45a3421038e.zip
op-kernel-dev-320549086d1e985c09fd6635075ab45a3421038e.tar.gz
greybus: PWM: convert to a gpbridge driver
This converts the PWM driver to be a gpbridge driver, moving it away from the "legacy" interface. Testing Done: Tested on gbsim. Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Signed-off-by: Vaibhav Hiremath <vaibhav.hiremath@linaro.org> [vaibhav.hiremath@linaro.org: 1.Changed code to retain init/exit fns of drivers. 2.Exit path fix. 3. Fixed review comments] Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org> Tested-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/pwm.c')
-rw-r--r--drivers/staging/greybus/pwm.c66
1 files changed, 46 insertions, 20 deletions
diff --git a/drivers/staging/greybus/pwm.c b/drivers/staging/greybus/pwm.c
index 176301a..b11e77d 100644
--- a/drivers/staging/greybus/pwm.c
+++ b/drivers/staging/greybus/pwm.c
@@ -178,8 +178,10 @@ static const struct pwm_ops gb_pwm_ops = {
.owner = THIS_MODULE,
};
-static int gb_pwm_connection_init(struct gb_connection *connection)
+static int gb_pwm_probe(struct gpbridge_device *gpbdev,
+ const struct gpbridge_device_id *id)
{
+ struct gb_connection *connection;
struct gb_pwm_chip *pwmc;
struct pwm_chip *pwm;
int ret;
@@ -187,17 +189,35 @@ static int gb_pwm_connection_init(struct gb_connection *connection)
pwmc = kzalloc(sizeof(*pwmc), GFP_KERNEL);
if (!pwmc)
return -ENOMEM;
+
+ connection = gb_connection_create(gpbdev->bundle,
+ le16_to_cpu(gpbdev->cport_desc->id),
+ NULL);
+ if (IS_ERR(connection)) {
+ ret = PTR_ERR(connection);
+ goto exit_pwmc_free;
+ }
+
pwmc->connection = connection;
gb_connection_set_data(connection, pwmc);
+ gb_gpbridge_set_data(gpbdev, pwmc);
+
+ ret = gb_connection_enable(connection);
+ if (ret)
+ goto exit_connection_destroy;
+
+ ret = gb_gpbridge_get_version(connection);
+ if (ret)
+ goto exit_connection_disable;
/* Query number of pwms present */
ret = gb_pwm_count_operation(pwmc);
if (ret)
- goto out_err;
+ goto exit_connection_disable;
pwm = &pwmc->chip;
- pwm->dev = &connection->bundle->dev;
+ pwm->dev = &gpbdev->dev;
pwm->ops = &gb_pwm_ops;
pwm->base = -1; /* Allocate base dynamically */
pwm->npwm = pwmc->pwm_max + 1;
@@ -205,36 +225,42 @@ static int gb_pwm_connection_init(struct gb_connection *connection)
ret = pwmchip_add(pwm);
if (ret) {
- dev_err(&connection->bundle->dev,
+ dev_err(&gpbdev->dev,
"failed to register PWM: %d\n", ret);
- goto out_err;
+ goto exit_connection_disable;
}
return 0;
-out_err:
+
+exit_connection_disable:
+ gb_connection_disable(connection);
+exit_connection_destroy:
+ gb_connection_destroy(connection);
+exit_pwmc_free:
kfree(pwmc);
return ret;
}
-static void gb_pwm_connection_exit(struct gb_connection *connection)
+static void gb_pwm_remove(struct gpbridge_device *gpbdev)
{
- struct gb_pwm_chip *pwmc = gb_connection_get_data(connection);
- if (!pwmc)
- return;
+ struct gb_pwm_chip *pwmc = gb_gpbridge_get_data(gpbdev);
+ struct gb_connection *connection = pwmc->connection;
pwmchip_remove(&pwmc->chip);
- /* kref_put(pwmc->connection) */
+ gb_connection_disable(connection);
+ gb_connection_destroy(connection);
kfree(pwmc);
}
-static struct gb_protocol pwm_protocol = {
- .name = "pwm",
- .id = GREYBUS_PROTOCOL_PWM,
- .major = GB_PWM_VERSION_MAJOR,
- .minor = GB_PWM_VERSION_MINOR,
- .connection_init = gb_pwm_connection_init,
- .connection_exit = gb_pwm_connection_exit,
- .request_recv = NULL, /* no incoming requests */
+static const struct gpbridge_device_id gb_pwm_id_table[] = {
+ { GPBRIDGE_PROTOCOL(GREYBUS_PROTOCOL_PWM) },
+ { },
};
-gb_builtin_protocol_driver(pwm_protocol);
+static struct gpbridge_driver pwm_driver = {
+ .name = "pwm",
+ .probe = gb_pwm_probe,
+ .remove = gb_pwm_remove,
+ .id_table = gb_pwm_id_table,
+};
+gb_gpbridge_builtin_driver(pwm_driver);
OpenPOWER on IntegriCloud