From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751897AbaCHRQR (ORCPT ); Sat, 8 Mar 2014 12:16:17 -0500 Received: from moutng.kundenserver.de ([212.227.126.131]:55330 "EHLO moutng.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750901AbaCHRQP (ORCPT ); Sat, 8 Mar 2014 12:16:15 -0500 From: Arnd Bergmann To: Liviu Dudau Subject: Re: [PATCH v6 6/6] pci: Add support for creating a generic host_bridge from device tree Date: Sat, 8 Mar 2014 18:15:08 +0100 User-Agent: KMail/1.12.2 (Linux/3.8.0-22-generic; KDE/4.3.2; x86_64; ; ) Cc: "linux-pci" , Bjorn Helgaas , Catalin Marinas , Will Deacon , "linaro-kernel" , Benjamin Herrenschmidt , LKML , "devicetree@vger.kernel.org" , LAKML , Tanmay Inamdar References: <1394020137-1830-1-git-send-email-Liviu.Dudau@arm.com> <1394020137-1830-7-git-send-email-Liviu.Dudau@arm.com> In-Reply-To: <1394020137-1830-7-git-send-email-Liviu.Dudau@arm.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201403081815.08829.arnd@arndb.de> X-Provags-ID: V02:K0:4nyXoNtUvMxvTUR9HjDcnrwjL35gj7ERp1jV0kKYWUy bgd77alrq5QTropKKc4YWKHQFr+Ri0PsVUXKnQ7wJIaYKk6ydD vYlIeui/HXmINV8KRBYVJgQH8maQikAoAZB9GtNzNKH8hmzvVj x5Uj0gxKTPY6XWbchUY/WDucgmEMlf1Ss0soqfpak9u/04nfyJ o6Up2Hs3oxvhcv+Scx5U1rWdC40CZHi00wnGndgEFToMFz8mpn kAANxqRKj2YVvIhTf5wn2g2axu8q3Qyu6eEm6mTBRBU71w7i0J +YpzttOorCAI1+vZTQGVi7USbkPYbTjgovY50h8AUu1IEfumdz HR4WnSY9qMQ/7bS3oFpUzfErcBO1j1Cp9cNDgiK9h Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wednesday 05 March 2014, Liviu Dudau wrote: > + > + pr_debug("Parsing ranges property...\n"); > + for_each_of_pci_range(&parser, &range) { > + /* Read next ranges element */ > + pr_debug("pci_space: 0x%08x pci_addr:0x%016llx ", > + range.pci_space, range.pci_addr); > + pr_debug("cpu_addr:0x%016llx size:0x%016llx\n", > + range.cpu_addr, range.size); > + > + /* > + * If we failed translation or got a zero-sized region > + * then skip this range > + */ > + if (range.cpu_addr == OF_BAD_ADDR || range.size == 0) > + continue; > + > + res = kzalloc(sizeof(struct resource), GFP_KERNEL); > + if (!res) > + return -ENOMEM; > + > + of_pci_range_to_resource(&range, dev, res); > + > + if (resource_type(res) == IORESOURCE_IO) > + *io_base = range.cpu_addr; > + > + pci_add_resource_offset(resources, res, > + res->start - range.pci_addr); > + } As mentioned regarding the pci_register_io_range() helper, x86 would not enter the 'resource_type(res) == IORESOURCE_IO' code path, which on the one hand is fine so we can return an error from pci_register_io_range() there, but I think it will lead to io_base getting an uninitialized content. There could also be other reasons why pci_register_io_range() fails, e.g. because the space is exhausted, and I think we should try to catch that here and skip the pci_add_resource_offset() and io_base assignment then. Arnd