Re: [PATCH v2 1/2] net: stmmac: Add OXNAS Glue Driver

2016-10-31 Thread Joachim Eastwood
Hi Neil, On 31 October 2016 at 11:54, Neil Armstrong wrote: > Add Synopsys Designware MAC Glue layer for the Oxford Semiconductor OX820. > > Acked-by: Joachim Eastwood > Signed-off-by: Neil Armstrong > --- > +static int oxnas_dwmac_init(struct oxnas_dwmac *dwmac) > +{ &

Re: [PATCH] net: stmmac: Add OXNAS Glue Driver

2016-10-31 Thread Joachim Eastwood
3.242253] stmmac - user ID: 0x11, Synopsys ID: 0x36 [3.247653] Ring mode enabled [3.251491] DMA HW capability register supported [3.256336] Enhanced/Alternate descriptors [3.261537] Enabled extended descriptors [3.265968] RX Checksum Offload Engine supported (type 2) [3.272249] TX Checksum insertion supported [3.276874] Wake-Up On Lan supported [3.283743] Enable RX Mitigation via HW Watchdog Timer [3.326701] libphy: stmmac: probed Synopsys ID: 0x36 and user UD: 0x11, gives us DWMAC version 3.611 regards, Joachim Eastwood

Re: [PATCH v2] rtc: add support for rtc NXP pca21125

2016-10-30 Thread Joachim Eastwood
r? You will need to add a regmap layer since the PCA21125 is SPI while the PCF8563 is I2C. regards, Joachim Eastwood

Re: [PATCH] rtc: add support for rtc NXP pca8565

2016-10-30 Thread Joachim Eastwood
ing a new one? If so; send a patch for rtc-pcf8563 that adds "pca8565" to the set of i2c ids. regards, Joachim Eastwood

Re: [PATCH] net: stmmac: Add OXNAS Glue Driver

2016-10-21 Thread Joachim Eastwood
nd(struct device *dev) > +{ > + struct net_device *ndev = dev_get_drvdata(dev); > + struct stmmac_priv *priv = netdev_priv(ndev); > + struct oxnas_dwmac *dwmac = priv->plat->bsp_priv; get_stmmac_bsp_priv() > + int ret; > + > + ret = stmmac_suspend(dev); > + clk_disable_unprepare(dwmac->clk); > + > + return ret; > +} > + > +static int oxnas_dwmac_resume(struct device *dev) > +{ > + struct net_device *ndev = dev_get_drvdata(dev); > + struct stmmac_priv *priv = netdev_priv(ndev); > + struct oxnas_dwmac *dwmac = priv->plat->bsp_priv; get_stmmac_bsp_priv() > + int ret; > + > + ret = oxnas_dwmac_init(dwmac); > + if (ret) > + return ret; > + > + ret = stmmac_resume(dev); > + > + return ret; > +} > +#endif /* CONFIG_PM_SLEEP */ With these changes: Acked-by: Joachim Eastwood best regards, Joachim Eastwood

Re: [RFC PATCH] net: stmmac: Add OXNAS Glue Driver

2016-10-20 Thread Joachim Eastwood
ad. I.e: PM resume/suspend and driver remove. Shouldn't you call oxnas_dwmac_init() from probe as well? As it is now it will only be called during PM resume and that can't be right. > + > + return stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res); If stmmac_dvr_probe() fails you should disable your clocks. regards, Joachim Eastwood

Re: [PATCH] clk: nxp: clk-lpc18xx-ccu: Unmap region obtained by of_iomap

2016-10-08 Thread Joachim Eastwood
Hi Arvind, On 20 September 2016 at 12:39, Arvind Yadav wrote: > From: Arvind Yadav > > Free memory mapping, if lpc18xx_ccu_init is not successful. > > Signed-off-by: Arvind Yadav Acked-by: Joachim Eastwood One comment below: > --- > drivers/clk/nxp/clk-lpc18xx-ccu.c |

Re: [PATCH 1/6] gpio: constify gpio_chip structures

2016-09-11 Thread Joachim Eastwood
ion(chip, offset, true); > } > > -static struct gpio_chip lpc18xx_chip = { > +static const struct gpio_chip lpc18xx_chip = { > .label = "lpc18xx/43xx-gpio", > .request= gpiochip_generic_request, > .free = gpiochip_generic_free, For lpc18xx: Acked-by: Joachim Eastwood regards, Joachim Eastwood

Re: [PATCH 03/10] reset: lpc18xx: add driver Kconfig option

2016-08-24 Thread Joachim Eastwood
Hi Philipp, On 24 August 2016 at 15:28, Philipp Zabel wrote: > Visible only if COMPILE_TEST is enabled, this allows to include the > driver in build tests. > > Cc: Joachim Eastwood > Signed-off-by: Philipp Zabel > --- > drivers/reset/Kconfig | 7 +++ > drivers/re

Re: [PATCH] i2c: don't print error when adding adapter fails

2016-08-09 Thread Joachim Eastwood
viewing, avoiding the patch bomb is probably a good thing. > > Should go via subsystem tree, I'd think. > > Wolfram Sang (1): > i2c: don't print error when adding adapter fails For > drivers/i2c/busses/i2c-lpc2k.c | 4 +--- Acked-by: Joachim Eastwood regards, Joachim Eastwood

Re: [PATCH v8 2/3] gpio: mmio: add DT support for memory-mapped GPIOs

2016-05-08 Thread Joachim Eastwood
t = (const void *)of_id->data; You can retrieve OF match data using of_device_get_match_data(). Saves you a couple of lines and better explains what your doing. > + if (parse_dt) > + err = parse_dt(pdev, pdata, flags); > + if (err) > + return ERR_PTR(err); > + > + return pdata; > +} regards, Joachim Eastwood

Re: [PATCH 3/7] reset: lpc18xx: use devm_reset_controller_register()

2016-05-01 Thread Joachim Eastwood
On 1 May 2016 at 12:36, Masahiro Yamada wrote: > Use devm_reset_controller_register() for the reset controller > registration and remove the unregister call from the .remove callback. > > Signed-off-by: Masahiro Yamada > --- Acked-by: Joachim Eastwood regards, Joachim Eastwood

Re: [PATCH v5 02/24] pwm: use pwm_get/set_xxx() helpers where appropriate

2016-04-14 Thread Joachim Eastwood
RITY_NORMAL) { > set_event = lpc18xx_pwm->period_event; > clear_event = lpc18xx_data->duty_event; > res_action = LPC18XX_PWM_RES_SET; For the lpc18xx-sct part: Acked-by: Joachim Eastwood regards, Joachim Eastwood

Re: [PATCH v2 1/2] irqchip: add lpc18xx gpio pin interrupt driver

2016-04-11 Thread Joachim Eastwood
Hi Marc, On 11 April 2016 at 17:15, Marc Zyngier wrote: > Hi Joachim, > > On 02/04/16 17:35, Joachim Eastwood wrote: >> Signed-off-by: Joachim Eastwood > > As a start, a commit message would be appreciated. Ops! I wonder where that disappeared to. The previous versio

Re: [PATCH v2] iio: max5487: Add support for Maxim digital potentiometers

2016-04-10 Thread Joachim Eastwood
On 10 April 2016 at 14:47, Joachim Eastwood wrote: > Hi Cristina, > > On 9 April 2016 at 10:24, Cristina Moraru wrote: >> Add implementation for Maxim MAX5487, MAX5488, MAX5489 >> digital potentiometers. >> >> Datasheet: >> http://datasheets.maximi

Re: [PATCH v2] iio: max5487: Add support for Maxim digital potentiometers

2016-04-10 Thread Joachim Eastwood
27;s you might as well have used spi_write() directly. I am not telling you to switch, but I don't see the point of using regmap here. Which reminds me; for regmap you need to select REGMAP_SPI in your Kconfig entry. regards, Joachim Eastwood

Re: [PATCH 5/9] iio: accel: mma7455: use regmap to retrieve struct device

2016-04-06 Thread Joachim Eastwood
l/mma7455_core.c > +++ b/drivers/iio/accel/mma7455_core.c > @@ -55,11 +55,11 @@ > > struct mma7455_data { > struct regmap *regmap; > - struct device *dev; > }; > > static int mma7455_drdy(struct mma7455_data *mma7455) > { > + struct device *dev = regmap_get

[PATCH v2 2/2] devicetree: document NXP LPC1850 PINT irq controller binding

2016-04-02 Thread Joachim Eastwood
Add binding documentation for NXP LPC1850 GPIO Pin Interrupt (PINT) controller. Signed-off-by: Joachim Eastwood --- .../interrupt-controller/nxp,lpc1850-gpio-pint.txt | 26 ++ 1 file changed, 26 insertions(+) create mode 100644 Documentation/devicetree/bindings/interrupt

[PATCH v2 1/2] irqchip: add lpc18xx gpio pin interrupt driver

2016-04-02 Thread Joachim Eastwood
Signed-off-by: Joachim Eastwood --- drivers/irqchip/Kconfig | 5 + drivers/irqchip/Makefile| 1 + drivers/irqchip/irq-lpc18xx-gpio-pint.c | 219 3 files changed, 225 insertions(+) create mode 100644 drivers/irqchip/irq-lpc18xx

[PATCH v2 0/2] PINT irqchip driver for NXP LPC18xx family

2016-04-02 Thread Joachim Eastwood
in handler - describe the interrupts property better in dt doc Joachim Eastwood (2): irqchip: add lpc18xx gpio pin interrupt driver devicetree: document NXP LPC1850 PINT irq controller binding .../interrupt-controller/nxp,lpc1850-gpio-pint.txt | 26 +++ drivers/irqch

Re: [PATCH] ARM: dts: armv7-m: add address to unit name

2016-04-02 Thread Joachim Eastwood
-controller@0xe000e100 { While changing the line it might be good idea to use the standard 'interrupt-controller' name instead. I posted the same patch couple of days ago, btw. http://marc.info/?l=devicetree&m=145929088915714&w=2 But I don't care which one that is applied. regards, Joachim Eastwood

Re: [PATCH] ARM: dts: s3c: Fix DTC unit name warnings in S3C2416 and S3C6410

2016-04-01 Thread Joachim Eastwood
arch/arm/boot/dts/s3c2416-smdk2416.dtb | grep -A2 memory memory { device_type = "memory"; reg = <0x0 0x0>; }; -- memory@3000 { reg = <0x3000 0x400>; }; regards, Joachim Eastwood [1] http://marc.info/?l=linux-arm-kernel&m=145933287125938&w=2

Re: [PATCH v5] iio: potentiometer: add driver for Microchip MCP413X/414X/415X/416X/423X/424X/425X/426X

2016-03-28 Thread Joachim Eastwood
ngpong with it. > > A very nice, clean driver. Thanks for your hard work on this. > > Note it is in a branch I happy to rebase for the next week, so if Joachim > in particular would like to add a reviewed by tag, I'd be delighted to append > it. Often reviewers don'

Re: [PATCH v4] iio: potentiometer: add driver for Microchip MCP413X/414X/415X/416X/423X/424X/425X/426X

2016-03-22 Thread Joachim Eastwood
data->buf[1] = val & 0xFF; /* 8 bits here */ > + > + err = spi_write(data->spi, data->buf, 2); > + if (err) { > + mutex_unlock(&data->lock); > + return err; > + } > + mutex_unlock(&data->lock); > + > + return 0; This last part could be written as: err = spi_write(data->spi, data->buf, 2); mutex_unlock(&data->lock); return err; Other than the things I noted driver looks good to me. regards, Joachim Eastwood

Re: [PATCH v5 2/4] Documentation: Bindings: Add STM32 DWMAC glue

2016-03-21 Thread Joachim Eastwood
ould be able to check which clocks the MAC really needs. Rockchip bindings have two clocks named "mac_clk_rx" and "mac_clk_tx". These are probably the same as stm32 needs so maybe use these names and move them into the main doc and update the rockchip binding. regards, Joachim Eastwood

Re: [PATCH v5 2/4] Documentation: Bindings: Add STM32 DWMAC glue

2016-03-21 Thread Joachim Eastwood
've been better if the versioned strings were > only used to indicate functionality, and not used to bind > the drivers. But the bindings were set some time ago. Since Alexandre has not added "snps,dwmac-3.50a" to dwmac-generic doesn't he use it as you suggest here? Note that we can not remove all the generic compatible strings from dwmac-generic because there is one platform that depend on one of them. (see arch/arm/boot/dts/exynos5440.dtsi:190) So we can not remove "snps,dwmac-3.70a" from the dwmac-generic driver if we want to keep backwards compatibility with exynos5440. But I guess we could remove the others if we want to. regards, Joachim Eastwood

Re: [PATCH v3] iio: add driver for Microchip MCP413X/414X/415X/416X/423X/424X/425X/426X

2016-03-20 Thread Joachim Eastwood
Hi Jonathan, On 20 March 2016 at 18:25, Jonathan Cameron wrote: > On 20/03/16 16:12, Joachim Eastwood wrote: >>> +static int mcp4131_exec(struct mcp4131_data *data, >>> + u8 addr, u8 cmd, >>> + u16 val) >>> +{ >>> +

Re: [PATCH v3] iio: add driver for Microchip MCP413X/414X/415X/416X/423X/424X/425X/426X

2016-03-20 Thread Joachim Eastwood
mutex_unlock(&data->lock); > + return -EINVAL; > + } > + break; > + default: > + mutex_unlock(&data->lock); > + return -EINVAL; > + } > + > + err = mcp4131_exec(data, address, MCP4131_WRITE, val); > + mutex_unlock(&data->lock); While this is not a huge function it is usually good practice to keep the locking scope as small as possible. So wouldn't this be sufficient here. mutex_lock(&data->lock); err = mcp4131_exec(data, address, MCP4131_WRITE, val); mutex_unlock(&data->lock); Of course if you are able move the lock into mcp4131_exec this will go away. regards, Joachim Eastwood

Re: [PATCH v2] pwm: pwm-lpc18xx-sct: test clock rate to avoid division by 0

2016-03-02 Thread Joachim Eastwood
ret = -EINVAL; > + goto disable_pwmclk; > + } Acked-by: Joachim Eastwood Thanks for fixing this. regards, Joachim Eastwood

Re: [PATCH 4/6] pwm: pwm-lpc18xx-sct: test clock rate to avoid division by 0

2016-03-02 Thread Joachim Eastwood
pc18xx_pwm->clk_rate) { ret = -EINVAL; goto disable_pwmclk; } I would also prefer an explicit check against 0 here. ie.: 'lpc18xx_pwm->clk_rate == 0' A dev_err() message would also be nice to have. regards, Joachim Eastwood

Re: [PATCH 2/2] devicetree: document NXP LPC1850 PINT irq controller binding

2016-03-02 Thread Joachim Eastwood
On 2 March 2016 at 19:13, Rob Herring wrote: > On Thu, Feb 25, 2016 at 11:04:47PM +0100, Joachim Eastwood wrote: >> Add binding documentation for NXP LPC1850 GPIO Pin Interrupt (PINT) >> controller. >> >> Signed-off-by: Joachim Eastwood >> --- >> ..

Re: [PATCH 10/41] clk: nxp: Remove CLK_IS_ROOT

2016-03-01 Thread Joachim Eastwood
Hi Stephen, On 1 March 2016 at 19:59, Stephen Boyd wrote: > This flag is a no-op now. Remove usage of the flag. > > Cc: Joachim Eastwood > Signed-off-by: Stephen Boyd > --- Acked-by: Joachim Eastwood

Re: [PATCH 1/2] irqchip: add lpc18xx gpio pin interrupt driver

2016-02-27 Thread Joachim Eastwood
Hi Thomas, On 26 February 2016 at 11:26, Thomas Gleixner wrote: > On Thu, 25 Feb 2016, Joachim Eastwood wrote: >> +static void lpc18xx_gpio_pint_handler(struct irq_desc *desc) >> +{ >> + struct lpc18xx_gpio_pint_chip *pint = irq_desc_get_handler_data(desc); >

Re: [PATCH v3 1/4] net: ethernet: dwmac: add Ethernet glue logic for stm32 chip

2016-02-26 Thread Joachim Eastwood
. > > Signed-off-by: Alexandre TORGUE Driver looks good now, thanks. Reviewed-by: Joachim Eastwood regards, Joachim Eastwood

Re: [PATCH v3 2/4] Documentation: Bindings: Add STM32 DWMAC glue

2016-02-26 Thread Joachim Eastwood
;macirq", "eth_wake_irq"; > + clock-names = "stmmaceth", "tx-clk", "rx-clk"; > + clocks = <&rcc 0 25>, <&rcc 0 26>, <&rcc 0 27>; > + st,syscon = <&syscfg 0x4>; > + snps,pbl = <8>; > + snps,mixed-burst; > + dma-ranges; > + }; Looks just like any other dwmac-driver binding so: Acked-by: Joachim Eastwood regards, Joachim Eastwood

[PATCH 0/2] PINT irqchip driver for NXP LPC18xx family

2016-02-25 Thread Joachim Eastwood
el or edge trigger and supports any polarity. This patch set adds an irqchip driver for the PINT found on lpc18xx. Joachim Eastwood (2): irqchip: add lpc18xx gpio pin interrupt driver devicetree: document NXP LPC1850 PINT irq controller binding .../interrupt-controller/nxp,lpc1850-gpio-pint

[PATCH 2/2] devicetree: document NXP LPC1850 PINT irq controller binding

2016-02-25 Thread Joachim Eastwood
Add binding documentation for NXP LPC1850 GPIO Pin Interrupt (PINT) controller. Signed-off-by: Joachim Eastwood --- .../interrupt-controller/nxp,lpc1850-gpio-pint.txt | 22 ++ 1 file changed, 22 insertions(+) create mode 100644 Documentation/devicetree/bindings/interrupt

[PATCH 1/2] irqchip: add lpc18xx gpio pin interrupt driver

2016-02-25 Thread Joachim Eastwood
y polarity. Selection of which GPIOs that are connected to the PINT is done by the lpc18xx pinctrl driver (SCU). Signed-off-by: Joachim Eastwood --- drivers/irqchip/Kconfig | 5 + drivers/irqchip/Makefile| 1 + drivers/irqchip/irq-lpc18xx-gpio-pi

Re: [PATCH] pinctrl: lpc18xx: ensure ngroups is initialized at correct place

2016-02-25 Thread Joachim Eastwood
= 0; func < FUNC_MAX; func++) { > + for (ngroups = 0, i = 0; i < ARRAY_SIZE(lpc18xx_pins); i++) { Good catch! Reviewed-by: Joachim Eastwood regards, Joachim Eastwood

Re: [PATCH 40/50] pinctrl: lpc18xx: Use devm_pinctrl_register() for pinctrl registration

2016-02-24 Thread Joachim Eastwood
Hi Laxman, On 24 February 2016 at 14:16, Laxman Dewangan wrote: > Use devm_pinctrl_register() for pin control registration. > > Signed-off-by: Laxman Dewangan > Cc: Joachim Eastwood > --- > drivers/pinctrl/pinctrl-lpc18xx.c | 3 +-- > 1 file changed, 1 insertion(+), 2 d

Re: [PATCH v2 2/4] Documentation: Bindings: Add STM32 DWMAC glue

2016-02-23 Thread Joachim Eastwood
rq", "eth_wake_irq"; > + clock-names = "stmmaceth", "tx-clk", "rx-clk"; > + clocks = <&rcc 0 25>, <&rcc 0 26>, <&rcc 0 27>; > + st,syscon = <&syscfg 0x4>; > + snps,pbl = <32>; Regarding snps,pbl; using 32 here might not give you what you would except. See comment in dwmac1000_dma_init(). The driver is hard coded to use PBL4X/PBL8X mode. Just a heads up. regards, Joachim Eastwood

Re: [PATCH v2 1/4] net: ethernet: dwmac: add Ethernet glue logic for stm32 chip

2016-02-23 Thread Joachim Eastwood
xit(priv->plat->bsp_priv); > + > + return ret; > +} > + > +#ifdef CONFIG_PM_SLEEP > +static int stm32_dwmac_suspend(struct device *dev) > +{ > + struct net_device *ndev = dev_get_drvdata(dev); > + struct stmmac_priv *priv = netdev_priv(ndev); > + int ret; > + > + ret = stmmac_suspend(ndev); > + stm32_dwmac_exit(priv->plat->bsp_priv); > + > + return ret; > +} > + > +static int stm32_dwmac_resume(struct device *dev) > +{ > + struct net_device *ndev = dev_get_drvdata(dev); > + struct stmmac_priv *priv = netdev_priv(ndev); > + int ret; > + > + ret = stm32_dwmac_init(priv->plat->bsp_priv); > + if (ret) > + goto out_regmap; > + > + ret = stmmac_resume(ndev); > + > +out_regmap: > + return ret; Why the goto? This could be written: ret = stm32_dwmac_init(priv->plat->bsp_priv); if (ret) return ret; return stmmac_resume(ndev); regards, Joachim Eastwood

Re: [PATCH 1/4] net: ethernet: dwmac: add Ethernet glue logic for stm32 chip

2016-02-23 Thread Joachim Eastwood
On 23 February 2016 at 10:59, Alexandre Torgue wrote: > 2016-02-22 22:52 GMT+01:00 Joachim Eastwood : >> On 22 February 2016 at 15:50, Alexandre Torgue >> wrote: >>> 2016-02-13 14:48 GMT+01:00 Joachim Eastwood : >>>> On 3 February 2016 at

Re: [PATCH v2 12/16] clk: avoid circular clock topology

2016-02-22 Thread Joachim Eastwood
On 22 February 2016 at 03:29, Masahiro Yamada wrote: > Hi Joachim, > > > 2016-02-22 6:39 GMT+09:00 Joachim Eastwood : >> Hi everyone, >> >> On 28 December 2015 at 11:10, Masahiro Yamada >> wrote: >>> Currently, clk_register() never checks a circular

Re: [PATCH 1/4] net: ethernet: dwmac: add Ethernet glue logic for stm32 chip

2016-02-22 Thread Joachim Eastwood
On 22 February 2016 at 15:50, Alexandre Torgue wrote: > 2016-02-13 14:48 GMT+01:00 Joachim Eastwood : >> On 3 February 2016 at 15:54, Alexandre TORGUE >> wrote: >>> + plat_dat->bsp_priv = dwmac; >>> + plat_dat->init = stm32_dwmac_init; >&g

Re: [PATCH v2 12/16] clk: avoid circular clock topology

2016-02-21 Thread Joachim Eastwood
manabian/linux-lpc/wiki/LPC18xx-LPC43xx-clocks All PLLs can feed clock into the dividers and the dividers can feed clock into the PLLs. The reason why this is made possible in the CGU is because you can then choose where to put your divider; either before the PLL or after. regards, Joachim Eastwood

Re: [PATCHv5 6/7] eeprom: 93xx46: extend driver to plug into the NVMEM framework

2016-02-17 Thread Joachim Eastwood
On 17 February 2016 at 23:11, Andrew Lunn wrote: > On Wed, Feb 17, 2016 at 11:02:56PM +0100, Joachim Eastwood wrote: >> Hi Andrew, >> >> On 17 February 2016 at 21:07, Andrew Lunn wrote: >> > Add a regmap for accessing the EEPROM, and then use that with the >>

Re: [PATCHv5 6/7] eeprom: 93xx46: extend driver to plug into the NVMEM framework

2016-02-17 Thread Joachim Eastwood
On 17 February 2016 at 23:02, Joachim Eastwood wrote: > Hi Andrew, > > On 17 February 2016 at 21:07, Andrew Lunn wrote: >> +/* >> + * Provide a regmap interface, which is registered with the NVMEM >> + * framework >> +*/ >> +static int eeprom_93xx46_reg

Re: [PATCHv5 6/7] eeprom: 93xx46: extend driver to plug into the NVMEM framework

2016-02-17 Thread Joachim Eastwood
return err; > + return 0; Can be: return eeprom_93xx46_read(eeprom_93xx46, val, offset, val_size); Allows you to remove the 'err' variable also. > +} > + > +static int eeprom_93xx46_regmap_write(void *context, const void *data, > +

Re: [PATCH 1/4] net: ethernet: dwmac: add Ethernet glue logic for stm32 chip

2016-02-13 Thread Joachim Eastwood
onst struct of_device_id stm32_dwmac_match[] = { > + { .compatible = "st,stm32-dwmac"}, > + { } > +}; > +MODULE_DEVICE_TABLE(of, stm32_dwmac_match); > + > +static struct platform_driver stm32_dwmac_driver = { > + .probe = stm32_dwmac_probe, > + .remove = stmmac_pltfr_remove, Could you implement the .remove callback in your driver instead of using stmmac_pltfr_remove? Same reasons as above. > + .driver = { > + .name = "stm32-dwmac", > + .pm = &stmmac_pltfr_pm_ops, > + .of_match_table = stm32_dwmac_match, > + }, > +}; > +module_platform_driver(stm32_dwmac_driver); > + > +MODULE_AUTHOR("Alexandre Torgue "); > +MODULE_DESCRIPTION("STMicroelectronics MCU DWMAC Specific Glue layer"); > +MODULE_LICENSE("GPL"); Since you state: > + * License terms: GNU General Public License (GPL), version 2 You might want to switch use: MODULE_LICENSE("GPL v2"); regards, Joachim Eastwood

Re: [PATCH] reset: lpc18xx: Make reset_control_ops const

2016-02-08 Thread Joachim Eastwood
return !(readl(rc->base + offset) & bit); > } > > -static struct reset_control_ops lpc18xx_rgu_ops = { > +static const struct reset_control_ops lpc18xx_rgu_ops = { > .reset = lpc18xx_rgu_reset, > .assert = lpc18xx_rgu_assert, > .deasser

Re: [PATCH v4 02/24] pwm: use pwm_get_xxx() helpers where appropriate

2015-11-16 Thread Joachim Eastwood
ers/pwm/pwm-lpc18xx-sct.c > @@ -249,7 +249,7 @@ static int lpc18xx_pwm_enable(struct pwm_chip *chip, > struct pwm_device *pwm) >LPC18XX_PWM_EVSTATEMSK(lpc18xx_data->duty_event), >LPC18XX_PWM_EVSTATEMSK_ALL); > > - if (pwm->polarity == PWM_POLARITY_NORMAL) {

Re: [PATCH] mtd: nand: atmel_nand: fix a possible NULL dereference

2015-11-12 Thread Joachim Eastwood
st->dev)->data; > + of_id = of_match_device(atmel_nand_dt_ids, host->dev); > + if (!of_id) > + return -ENODEV; > + host->caps = of_id->data; It might be cleaner to use of_device_get_match_data() here. regards, Joachim Eastwood -- To uns

Re: [PATCH 5/5] drivers/tty: make serial 8250_lpc18xx.c Kconfig a tristate

2015-08-19 Thread Joachim Eastwood
odular code that was essentially > orphaned. > > Suggested-by: Joachim Eastwood > Cc: Greg Kroah-Hartman > Cc: Jiri Slaby > Cc: Joachim Eastwood > Cc: linux-ser...@vger.kernel.org > Cc: linux-arm-ker...@lists.infradead.org > Signed-off-by: Paul Gortmaker Acked-by: Joachim East

Re: [PATCH V3 0/5] clk: support clocks which requires parent clock on during operation

2015-08-13 Thread Joachim Eastwood
l see if I can find the time to test your patch set. Thanks for working on this. regards, Joachim Eastwood -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majord

Re: [PATCH 5/5] drivers/tty: make serial 8250_lpc18xx.c explicitly non-modular

2015-08-10 Thread Joachim Eastwood
ble as module and it builds just fine with 'm'. Want me send a patch changing it to tristate or will you handle it? regards, Joachim Eastwood -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org

Re: [RFC PATCH v4 7/9] arm: lpc18xx_defconfig: remove CONFIG_MMC_DW_IDMAC

2015-08-07 Thread Joachim Eastwood
On 6 August 2015 at 08:46, Shawn Lin wrote: > DesignWare MMC Controller's transfer mode should be decided > at runtime instead of compile-time. So we remove this config > option and read dw_mmc's register to select DMA master. > > Signed-off-by: Shawn Lin Acked-by: J

Re: [RFC PATCH v4 1/9] mmc: dw_mmc: Add external dma interface support

2015-08-07 Thread Joachim Eastwood
} else if (trans_mode == 1 || trans_mode == 2) { > + trans_mode = TRANS_MODE_EDMAC; > + } else { > + trans_mode = TRANS_MODE_PIO; > + goto no_dma; > + } > + > /* Check ADDR_CONFIG bit in HCON to find IDMAC addr

Re: [PATCH 20/45] clk: nxp: Remove clk.h include

2015-07-11 Thread Joachim Eastwood
On 11 July 2015 at 01:33, Stephen Boyd wrote: > Clock provider drivers generally shouldn't include clk.h because > it's the consumer API. Remove the include here because this is a > provider driver. > > Cc: Joachim Eastwood > Signed-off-by: Stephen Boyd Acked

Re: [PATCH 5/5] staging: lustre: osc: drop trivially useless initialization

2015-06-20 Thread Joachim Eastwood
; { > struct osc_page *opg = cl2osc_page(slice); > - int rc = 0; > + int rc; > > rc = osc_flush_async_page(env, io, opg); > return rc; > The whole rc variable is kinda useless. Why not make it just: return osc_flush_async_page(env, io, opg); re

Re: [PATCH v4 1/3] clk: Add regmap support

2015-06-19 Thread Joachim Eastwood
d-off-by: Matthias Brugger I think it looks fine now and I have no further comments, so: Acked-by: Joachim Eastwood Hope this can go in for 4.3. regards, Joachim Eastwood -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH v3 1/3] clk: Add regmap support

2015-06-16 Thread Joachim Eastwood
gmap; }; u32 offset; } What do you think? I would also like to see this land so thanks for doing this work Matthias. Hope some clk maintainer will have the time to look at it soon also. regards, Joachim Eastwood -- To unsubscribe from this list: send the li

Re: [PATCH] ARM: Re-enable TRACE_IRQFLAGS_SUPPORT on ARMv7-M

2015-06-10 Thread Joachim Eastwood
2 code (and show that without the patch it doesn't > build). > > From my side I think that makes it good to go. Since next didn't build for me either I applied this and it works for the LPC18xx (Cortex-M4) platform. Tested-by: Joachim Eastwood regards, Joachim Eastwood -- T

Re: [PATCH v2 1/3] clk: mux: Add regmap support for simple mux

2015-05-29 Thread Joachim Eastwood
LY BIT(3) /* mux can't be changed */ > #define CLK_MUX_ROUND_CLOSEST BIT(4) > +#define CLK_MUX_USE_REGMAP BIT(5) Since you are adding both fields and a flag to struct clk_mux it would be nice if you could update the documentation above the struct definition in clk-provider.h also. regards, Joachim Eastwood -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH 1/3] clk: mux: Add regmap support for simple mux

2015-05-28 Thread Joachim Eastwood
*table; > + u32 offset; > u32 mask; > u8 shift; > u8 flags; regards, Joachim Eastwood -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH v4 2/2] soc: Add driver for Freescale Vybrid Platform

2015-05-27 Thread Joachim Eastwood
rn 0; > +} > + > +static int vf610_soc_remove(struct platform_device *pdev) > +{ > + if (soc_dev_attr) { > + kfree(soc_dev_attr->revision); > + kfree(soc_dev_attr->family); > + kfree(soc_dev_attr->soc_id); > + k

Re: [PATCH defconfig] ARM: add ARM_SINGLE_ARMV7M in ARMv7-M defconfigs

2015-05-21 Thread Joachim Eastwood
Hi Stefan. On 21 May 2015 at 00:38, Stefan Agner wrote: > Select ARM_SINGLE_ARMV7M in defconfigs of the converted ARMv7-M > platforms. > > Signed-off-by: Stefan Agner For the LPC18xx config; Acked-by: Joachim Eastwood regards, Joachim Eastwood -- To unsubscribe from this list: s

Re: [PATCH soc] ARM: use ARM_SINGLE_ARMV7M for ARMv7-M platforms

2015-05-21 Thread Joachim Eastwood
s. > - [...] > +config ARCH_LPC18XX > + bool "NXP LPC18xx/LPC43xx" > + depends on ARM_SINGLE_ARMV7M > + select ARCH_HAS_RESET_CONTROLLER > + select ARM_AMBA > + select CLKSRC_LPC32XX > + select PINCTRL > + help >

Re: [PATCH v7 08/13] ARM: unify MMU/!MMU addruart calls

2015-05-19 Thread Joachim Eastwood
based on >> the appropriate branches (next/soc, next/dt and next/defconfig, I >> presume), and I'll apply them this time. In the future, you should >> send all patches to Shawn though. > > Ok, I will rebase this patchset (06-13) then, send the clocksource patch

Re: [PATCH] serial: 8250_uniphier: add UniPhier serial driver

2015-05-15 Thread Joachim Eastwood
turn 0; > +} > +static int uniphier_uart_remove(struct platform_device *pdev) > +{ > + struct uniphier8250_priv *priv = platform_get_drvdata(pdev); > + > + serial8250_unregister_port(priv->line); > + if (!IS_ERR_OR_NULL(priv->clk)) { > +

Re: lpc18xx: undefined Kconfig option ARCH_LPC18XX

2015-05-06 Thread Joachim Eastwood
nds on OF && (ARCH_LPC18XX || COMPILE_TEST) > > Is there a patch queued somewhere to add ARCH_LPC18XX ? Currently it's only on the mail list. See: http://marc.info/?l=linux-arm-kernel&m=143016894704253&w=2 Some drivers are going upstream before the base support. re

Re: [git pull] vfs fixes

2014-09-26 Thread Joachim Eastwood
On 26 September 2014 23:28, Joachim Eastwood wrote: > On 26 September 2014 22:58, Al Viro wrote: >> On Fri, Sep 26, 2014 at 10:46:14PM +0200, Joachim Eastwood wrote: >>> On 14 September 2014 21:47, Al Viro wrote: >>> > double iput() on failure exit in lustre, ra

Re: [git pull] vfs fixes

2014-09-26 Thread Joachim Eastwood
On 26 September 2014 22:58, Al Viro wrote: > On Fri, Sep 26, 2014 at 10:46:14PM +0200, Joachim Eastwood wrote: >> On 14 September 2014 21:47, Al Viro wrote: >> > double iput() on failure exit in lustre, racy removal of spliced dentries >> > from ->s_anon in __d_mat

Re: [git pull] vfs fixes

2014-09-26 Thread Joachim Eastwood
found at block 0 [ 9.59] VFS: Mounted root (ext2 filesystem) readonly on device 1:0. [ 9.60] devtmpfs: mounted [ 9.61] Freeing unused kernel memory: 68K (281e5000 - 281f6000) And then user space starts. This is an ARM Cortex-M4 no-MMU platform that is not yet upstream. regards,

Re: [git pull] vfs fixes

2014-09-26 Thread Joachim Eastwood
On 14 September 2014 21:47, Al Viro wrote: > double iput() on failure exit in lustre, racy removal of spliced dentries > from ->s_anon in __d_materialise_dentry() plus a bunch of assorted RCU > pathwalk > fixes. Please, pull from the usual place - > git://git.kernel.org/pub/scm/linux/kernel/git/

Re: [PATCH v5] mfd: syscon: Decouple syscon interface from platform devices

2014-09-26 Thread Joachim Eastwood
On 26 September 2014 09:16, Arnd Bergmann wrote: > On Friday 26 September 2014 07:34:12 Joachim Eastwood wrote: >> I am working on Cortex-M4 no-MMU platform that isn't upstream yet, btw. >> > > Sorry for drifting off-topic, but this is very interesting to me. Can y

Re: [PATCH v5] mfd: syscon: Decouple syscon interface from platform devices

2014-09-25 Thread Joachim Eastwood
On 26 September 2014 06:56, Pankaj Dubey wrote: > Hi Heiko and Joachim, > >> -Original Message- >> From: Heiko Stübner [mailto:he...@sntech.de] >> Sent: Thursday, September 25, 2014 5:52 PM >> To: Pankaj Dubey >> Cc: Joachim Eastwood; linux-arm-ker..

Re: [PATCH v5] mfd: syscon: Decouple syscon interface from platform devices

2014-09-23 Thread Joachim Eastwood
k driver using syscon and your patch. clk driver uses CLK_OF_DECLARE, btw. It works but I get a '(null): Failed to create debugfs directory' message in the boot log. Tested-by: Joachim Eastwood regards, Joachim Eastwood -- To unsubscribe from this list: send the line "unsubscribe linux-

Re: [PATCH 1/5] arm: dts: omap3-gta04: Add missing nodes to fully describe gta04 board

2014-07-17 Thread Joachim Eastwood
On 16 July 2014 09:17, Dr. H. Nikolaus Schaller wrote: > Am 15.07.2014 um 14:45 schrieb Joachim Eastwood: > >> Hi Marek, >> >> You seem to add some DT nodes for hw that doesn't have drivers in >> mainline. I think you should leave those out until the driver its

Re: [PATCH 1/5] arm: dts: omap3-gta04: Add missing nodes to fully describe gta04 board

2014-07-15 Thread Joachim Eastwood
NPUT_PULLUP | > MUX_MODE4) /* gpio_115 */ > + >; > + }; > +}; > + > +&omap3_pmx_core2 { > + pinctrl-names = "default"; > + pinctrl-0 = < > + &hsusb2_2_pins > + >; > + > +

Re: [PATCH V2] crypto: omap-des - handle error of pm_runtime_get_sync

2014-04-15 Thread Joachim Eastwood
s built-in on my VAR-SOM-OM44 (OMAP4460) board. Tested-by: Joachim Eastwood regards Joachim Eastwood -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-inf

Re: [PATCH v6 01/16] spi/spi-atmel: fix probing failure after xfer->speed_hz set

2013-03-07 Thread Joachim Eastwood
t; } I sent a similar patch to spi-devl a while ago, which Grant said he applied. https://patchwork.kernel.org/patch/2165301/ Can't find the patch in any upstream git tree so I guess Grant hasn't pushed it yet. regards Joachim Eastwood -- To unsubscribe fr

Re: [PATCH Resend v5 12/16] spi/spi-atmel: add pinctrl support for atmel spi

2013-02-27 Thread Joachim Eastwood
EM, 0); > if (!regs) > return -ENXIO; > > + pinctrl = devm_pinctrl_get_select_default(&pdev->dev); > + if (IS_ERR(pinctrl)) { > + dev_err(&pdev->dev, "Failed to request pinctrl\n"); > + retu

Re: [PATCH] net/macb: Use non-coherent memory for rx buffers

2012-11-23 Thread Joachim Eastwood
dev; > -- struct macb is shared between at91_ether and macb. Removing rx_buffers_dma and rx_buffers will break compilation on at91_ether. So please either leave the two struct members alone, for now, or fix up at91_ether at the same time. regards Joachim Eastwood -- To unsubscribe from this li

Re: [PATCH] net/macb: GEM DMA configuration register update

2012-11-23 Thread Joachim Eastwood
On 23 November 2012 14:49, Nicolas Ferre wrote: > Add information to the DMA Configuration Register to > maximize system performance: > - rx/tx packet buffer full memory size > - allow possibility to use INCR16 if supported > > Signed-off-by: Nicolas Ferre Acked-by: Joa

[PATCH] AVR32: switch to generic param.h

2012-11-17 Thread Joachim Eastwood
redefined Everything we need from param.h on AVR32 is already in asm-generic so let's use that. Signed-off-by: Joachim Eastwood --- arch/avr32/include/asm/Kbuild | 1 + arch/avr32/include/asm/param.h | 9 - 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 arc

Re: linux-next: manual merge of the arm-soc tree with the net-next tree

2012-11-12 Thread Joachim Eastwood
ude > +#include > +#include > +#include > + #include The platform_data/atmel.h include shouldn't be necessary since the driver already includes platform_data/macb.h. Otherwise the fix up looks correct. regards Joachim Eastwood -- To unsubscribe from this list: send the l

Re: [PATCH v3 10/10] net/macb: add pinctrl consumer support

2012-10-30 Thread Joachim Eastwood
; } > > + pinctrl = devm_pinctrl_get_select_default(&pdev->dev); > + if (IS_ERR(pinctrl)) { > + err = PTR_ERR(pinctrl); > + if (err == -EPROBE_DEFER) > + goto err_out; > + > + dev_warn(

Re: [PATCH v3 00/10] net/macb: driver enhancement concerning GEM support, ring logic and cleanup

2012-10-30 Thread Joachim Eastwood
s. Gave the patch series a quick spin on RM9200 as well and the at91_ether driver still works. Not many patches here that touch the shared code though. So FWIW; Tested-by: Joachim Eastwood Note: Needed the patch you sent out (net/at91_ether: fix the use of macb structure) to fix the build err

Re: [BUG] Deferred probing in driver model is racy, resulting in lost probes

2012-09-27 Thread Joachim Eastwood
x0/0x720) [ 16.15] r7:0013 r6:c001b4d4 r5:c0033658 r4:c3827ecc [ 16.16] ---[ end trace d7472237284e57c3 ]--- [ 16.16] mpa1600-audio mpa1600-audio.0: Failed to set SSC for audio: -17 [ 16.18] mpa1600-audio: probe of mpa1600-audio.0 failed with error -17 regards Joachim Eastwood -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] USB: ohci-at91: fix PIO handling in relation with number of ports

2012-09-22 Thread Joachim Eastwood
registered, assigned bus number 1 [8.34] at91_ohci at91_ohci: irq 39, io mem 0x0030 [8.52] hub 1-0:1.0: USB hub found [8.66] hub 1-0:1.0: 1 port detected I assume this commit tried to fix the "can't request overcurrent gpio 0" message. I am running