Message ID | 20230606094535.5388-1-billy_tsai@aspeedtech.com |
---|---|
Headers | show |
Series | Support pwm/tach driver for aspeed ast26xx | expand |
On 06/06/2023 11:45, Billy Tsai wrote: > Add the support of PWM controller which can be found at aspeed ast2600 > soc. The pwm supoorts up to 16 channels and it's part function of > multi-function device "pwm-tach controller". > > Signed-off-by: Billy Tsai <billy_tsai@aspeedtech.com> > Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> > --- > +static int aspeed_pwm_probe(struct platform_device *pdev) > +{ > + struct device *dev = &pdev->dev; > + int ret; > + struct aspeed_pwm_data *priv; > + struct device_node *np; > + struct platform_device *parent_dev; > + > + priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); > + if (!priv) > + return -ENOMEM; > + > + np = pdev->dev.parent->of_node; > + if (!of_device_is_compatible(np, "aspeed,ast2600-pwm-tach")) > + return dev_err_probe(dev, -ENODEV, > + "Unsupported pwm device binding\n"); No, don't embed compatibles in your code. This is useless, so drop it. > + > + priv->regmap = syscon_node_to_regmap(np); > + if (IS_ERR(priv->regmap)) > + return dev_err_probe(dev, PTR_ERR(priv->regmap), > + "Couldn't get regmap\n"); > + > + parent_dev = of_find_device_by_node(np); Why? You already have parent! > + priv->clk = devm_clk_get_enabled(&parent_dev->dev, NULL); > + if (IS_ERR(priv->clk)) > + return dev_err_probe(dev, PTR_ERR(priv->clk), > + "Couldn't get clock\n"); NAK. This is purely broken. You cannot play with parent's clock and I told you this last time. Parent is simple-mfd so this code is a hacky workaround over using simple-mfd even though I told you that yuo cannot use simple-mfd. > + > + priv->reset = devm_reset_control_get_shared(&parent_dev->dev, NULL); NAK. Best regards, Krzysztof
On 06/06/2023 11:45, Billy Tsai wrote: > Add the support of Tachometer which can use to monitor the frequency of > the input. The tach supports up to 16 channels and it's part function of > multi-function device "pwm-tach controller". > > Signed-off-by: Billy Tsai <billy_tsai@aspeedtech.com> > + > +static void aspeed_tach_reset_assert(void *data) > +{ > + struct reset_control *rst = data; > + > + reset_control_assert(rst); > +} > + > +static int aspeed_tach_probe(struct platform_device *pdev) > +{ > + struct device *dev = &pdev->dev; > + struct device_node *np, *child; > + struct aspeed_tach_data *priv; > + struct device *hwmon; > + int ret; > + > + np = dev->parent->of_node; > + if (!of_device_is_compatible(np, "aspeed,ast2600-pwm-tach")) Drop. > + return dev_err_probe(dev, -ENODEV, > + "Unsupported tach device binding\n"); > + > + priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); > + if (!priv) > + return -ENOMEM; > + priv->dev = &pdev->dev; > + > + priv->regmap = syscon_node_to_regmap(np); > + if (IS_ERR(priv->regmap)) > + return dev_err_probe(dev, PTR_ERR(priv->regmap), > + "Couldn't get regmap\n"); > + > + priv->clk = devm_clk_get_enabled(dev->parent, NULL); NAK. Parent is simple-mfd, means it must not have clock. > + if (IS_ERR(priv->clk)) > + return dev_err_probe(dev, PTR_ERR(priv->clk), > + "Couldn't get clock\n"); > + > + priv->clk_source = clk_get_rate(priv->clk); > + > + priv->reset = devm_reset_control_get_shared(dev->parent, NULL); NAK, same reasons. Best regards, Krzysztof