|
@@ -231,52 +231,27 @@ static int arizona_micsupp_of_get_pdata(struct arizona_micsupp_pdata *pdata,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int arizona_micsupp_probe(struct platform_device *pdev)
|
|
|
+static int arizona_micsupp_common_init(struct platform_device *pdev,
|
|
|
+ struct arizona_micsupp *micsupp,
|
|
|
+ const struct regulator_desc *desc,
|
|
|
+ struct arizona_micsupp_pdata *pdata)
|
|
|
{
|
|
|
- struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
|
|
|
- const struct regulator_desc *desc;
|
|
|
struct regulator_config config = { };
|
|
|
- struct arizona_micsupp_pdata *pdata = &arizona->pdata.micvdd;
|
|
|
- struct arizona_micsupp *micsupp;
|
|
|
int ret;
|
|
|
|
|
|
- micsupp = devm_kzalloc(&pdev->dev, sizeof(*micsupp), GFP_KERNEL);
|
|
|
- if (!micsupp)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- micsupp->regmap = arizona->regmap;
|
|
|
- micsupp->dapm = &arizona->dapm;
|
|
|
- micsupp->dev = arizona->dev;
|
|
|
INIT_WORK(&micsupp->check_cp_work, arizona_micsupp_check_cp);
|
|
|
|
|
|
- /*
|
|
|
- * Since the chip usually supplies itself we provide some
|
|
|
- * default init_data for it. This will be overridden with
|
|
|
- * platform data if provided.
|
|
|
- */
|
|
|
- switch (arizona->type) {
|
|
|
- case WM5110:
|
|
|
- case WM8280:
|
|
|
- desc = &arizona_micsupp_ext;
|
|
|
- micsupp->init_data = arizona_micsupp_ext_default;
|
|
|
- break;
|
|
|
- default:
|
|
|
- desc = &arizona_micsupp;
|
|
|
- micsupp->init_data = arizona_micsupp_default;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
micsupp->init_data.consumer_supplies = &micsupp->supply;
|
|
|
micsupp->supply.supply = "MICVDD";
|
|
|
- micsupp->supply.dev_name = dev_name(arizona->dev);
|
|
|
+ micsupp->supply.dev_name = dev_name(micsupp->dev);
|
|
|
micsupp->enable_reg = desc->enable_reg;
|
|
|
|
|
|
- config.dev = arizona->dev;
|
|
|
+ config.dev = micsupp->dev;
|
|
|
config.driver_data = micsupp;
|
|
|
- config.regmap = arizona->regmap;
|
|
|
+ config.regmap = micsupp->regmap;
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_OF)) {
|
|
|
- if (!dev_get_platdata(arizona->dev)) {
|
|
|
+ if (!dev_get_platdata(micsupp->dev)) {
|
|
|
ret = arizona_micsupp_of_get_pdata(pdata, &config,
|
|
|
desc);
|
|
|
if (ret < 0)
|
|
@@ -289,8 +264,8 @@ static int arizona_micsupp_probe(struct platform_device *pdev)
|
|
|
else
|
|
|
config.init_data = &micsupp->init_data;
|
|
|
|
|
|
- /* Default to regulated mode until the API supports bypass */
|
|
|
- regmap_update_bits(arizona->regmap, ARIZONA_MIC_CHARGE_PUMP_1,
|
|
|
+ /* Default to regulated mode */
|
|
|
+ regmap_update_bits(micsupp->regmap, micsupp->enable_reg,
|
|
|
ARIZONA_CPMIC_BYPASS, 0);
|
|
|
|
|
|
micsupp->regulator = devm_regulator_register(&pdev->dev,
|
|
@@ -301,7 +276,7 @@ static int arizona_micsupp_probe(struct platform_device *pdev)
|
|
|
|
|
|
if (IS_ERR(micsupp->regulator)) {
|
|
|
ret = PTR_ERR(micsupp->regulator);
|
|
|
- dev_err(arizona->dev, "Failed to register mic supply: %d\n",
|
|
|
+ dev_err(micsupp->dev, "Failed to register mic supply: %d\n",
|
|
|
ret);
|
|
|
return ret;
|
|
|
}
|
|
@@ -311,6 +286,41 @@ static int arizona_micsupp_probe(struct platform_device *pdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static int arizona_micsupp_probe(struct platform_device *pdev)
|
|
|
+{
|
|
|
+ struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
|
|
|
+ const struct regulator_desc *desc;
|
|
|
+ struct arizona_micsupp *micsupp;
|
|
|
+
|
|
|
+ micsupp = devm_kzalloc(&pdev->dev, sizeof(*micsupp), GFP_KERNEL);
|
|
|
+ if (!micsupp)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ micsupp->regmap = arizona->regmap;
|
|
|
+ micsupp->dapm = &arizona->dapm;
|
|
|
+ micsupp->dev = arizona->dev;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Since the chip usually supplies itself we provide some
|
|
|
+ * default init_data for it. This will be overridden with
|
|
|
+ * platform data if provided.
|
|
|
+ */
|
|
|
+ switch (arizona->type) {
|
|
|
+ case WM5110:
|
|
|
+ case WM8280:
|
|
|
+ desc = &arizona_micsupp_ext;
|
|
|
+ micsupp->init_data = arizona_micsupp_ext_default;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ desc = &arizona_micsupp;
|
|
|
+ micsupp->init_data = arizona_micsupp_default;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ return arizona_micsupp_common_init(pdev, micsupp, desc,
|
|
|
+ &arizona->pdata.micvdd);
|
|
|
+}
|
|
|
+
|
|
|
static struct platform_driver arizona_micsupp_driver = {
|
|
|
.probe = arizona_micsupp_probe,
|
|
|
.driver = {
|