Hello I cannot do only of_mm_gpiochip_remove before only_one_gpio_device, because I have to restore the initial io address :S. Anyway I have prepared a new patchset with hopefully all you need. I have resend also the old patches so you can have a general view. I think that only gpio-mpc5200.c would benefit from the new API, I can send a patchset to support removal and use the new API if you want. Thanks! On Wed, Dec 17, 2014 at 3:05 PM, Alexandre Courbot <gnurou@xxxxxxxxx> wrote: > On Wed, Dec 17, 2014 at 10:31 PM, Ricardo Ribalda Delgado > <ricardo.ribalda@xxxxxxxxx> wrote: >> On Wed, Dec 17, 2014 at 2:26 PM, Alexandre Courbot <gnurou@xxxxxxxxx> wrote: >>> On Wed, Dec 17, 2014 at 8:02 PM, Ricardo Ribalda Delgado >>> <ricardo.ribalda@xxxxxxxxx> wrote: >>>> Hello Alexandre >>>> >>>>> This should not be here. The mapping and call to gpiochip_add() are >>>>> performed by of_mm_gpiochip_add(). We should thus have a >>>>> of_mm_gpiochip_remove() function that undoes what _add did instead of >>>>> expected all users to do unmap themselves. Can you add a patch to your >>>>> series that adds this function? >>>> >>>>> >>>>> Also I am not sure I understand why the unmapping is done only once. >>>>> Both chips are supposed to have been added (and thus mapped) at this >>>>> stage. Oh right I see, so this driver ends up mapping the same area >>>>> twice! Not only are you iomapping the same area twice, you are >>>>> unmapping it only once, and only if the chip is dual. This looks very >>>>> broken. >>>>> >>>> >>>> If you look carefully you can see that it is unmapped twice if it is >>>> called twice. iounmap is called inside the for loop. >>> >>> D'oh, you are right of course. I don't know why, but I thought the >>> iounmap() was part of the if (i == 1) conditional block. >_< >>> >>>> >>>> >>>>> Couldn't you redesign the driver the following way: only add one chip >>>>> (since you have 1 DT node), with an extra member to track which GPIOs >>>>> belong to the second chip (in case it is dual), and change the other >>>>> functions to handle this. >>>> >>>> I do not mind rearranging the driver so there is only one gpio device, >>>> even for dual chips, but I think this should be done in a separate >>>> patch. >>>> >>>> What about? >>>> >>>> 1) Keep the current patchset >>>> >>>> and then >>>> >>>> 2) Add another patchset with >>>> >>>> - xilinx-gpio: only one gpio device >>>> - add of_mm_gpiochip_remove() to the api >>>> - xilinx gpio: use of_mm_gpiochip_remove >>>> - others: use of_mm_gpiochip_remove >>> >>> I think this would look better this way: >>> >>> - xilinx-gpio: remove offset property >>> - xilinx-gpio: only one gpio device >>> - add of_mm_gpiochip_remove() to the api >>> - xilinx-gpio: use of_mm_gpiochip_remove >>> - xilinx-gpio: Convert the driver to platform device interface. >>> >>> (others: use of_mm_gpiochip_remove would be appreciated of course, but >>> I won't ask you to go that far and fix everybody). >>> >>> The reason for this order is that your current patch would be shorter >>> is the driver is turned to add one device only first. It's also >>> generally better to work on cleaner code. But to switch the driver to >>> single-device, you will first need to remove the offset property >>> (IIUC, at least). >> >> >> I totally see your point but I rather do not touch the first patchset, >> two reasons. >> >> One is that other people has already acked it and that it will make my >> life easier and probably have it ready before the holidays :) > > Maintainers are also interested in making their life easier, you know > - a concern that should be shared by anyone who wants to see their > patches merged. ;) > >> >> >> Anyway I could change your mind to: >> - xilinx-gpio: remove offset property >> - xilinx-gpio: Convert the driver to platform device interface. >> - xilinx-gpio: only one gpio device >> - add of_mm_gpiochip_remove() to the api >> - xilinx-gpio: use of_mm_gpiochip_remove >> ? > > Well, at the end of the day it would be the same, and even in its > current form this patch is an improvement. So I guess it would be ok. > What I like about my plan is that this patch comes last, so you are > obliged to reorganize the driver - whereas if we merge this series now > you can just run away. :P > > Let's do this way: > > - xilinx-gpio: remove offset property > - add of_mm_gpiochip_remove() to the api > - xilinx-gpio: Convert the driver to platform device interface (using > of_mm_gpiochip_remove()) > - xilinx-gpio: only one gpio device (if you don't run away, that is) > > Adding of_mm_gpiochip_remove() is a trivial task, but is really > critical to remove the device correctly, which your platform device > patch needs to do. It won't add much work for you, but at least all > the improvements that are non-local to the xilinx driver will be > there. > > Deal? -- Ricardo Ribalda -- To unsubscribe from this list: send the line "unsubscribe linux-gpio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html