Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1594136
| From | Kishon Vijay Abraham I <kishon@ti.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2 5/7] PCI: dwc: all: Modify dbi accessors to access data of 4/2/1 bytes |
| Date | 2017-03-07 12:30 +0100 |
| Message-ID | <tiltw-6P9-7@gated-at.bofh.it> (permalink) |
| References | <tik4p-5CJ-1@gated-at.bofh.it> <tiltw-6P9-9@gated-at.bofh.it> <tiltw-6P9-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Tuesday 07 March 2017 04:48 PM, Joao Pinto wrote: > Às 9:52 AM de 3/7/2017, Kishon Vijay Abraham I escreveu: >> Previously dbi accessors can be used to access data of size 4 >> bytes. But there might be situations (like accessing >> MSI_MESSAGE_CONTROL in order to set/get the number of required >> MSI interrupts in EP mode) where dbi accessors must >> be used to access data of size 2. This is in preparation for >> adding endpoint mode support to designware driver. >> >> Cc: Jingoo Han <jingoohan1@gmail.com> >> Cc: Richard Zhu <hongxing.zhu@nxp.com> >> Cc: Lucas Stach <l.stach@pengutronix.de> >> Cc: Murali Karicheri <m-karicheri2@ti.com> >> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> >> Cc: Niklas Cassel <niklas.cassel@axis.com> >> Cc: Jesper Nilsson <jesper.nilsson@axis.com> >> Cc: Joao Pinto <Joao.Pinto@synopsys.com> >> Cc: Zhou Wang <wangzhou1@hisilicon.com> >> Cc: Gabriele Paoloni <gabriele.paoloni@huawei.com> >> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> >> --- >> drivers/pci/dwc/Kconfig | 18 ++++---- >> drivers/pci/dwc/pci-dra7xx.c | 8 ++-- >> drivers/pci/dwc/pci-exynos.c | 16 +++---- >> drivers/pci/dwc/pci-imx6.c | 54 +++++++++++----------- >> drivers/pci/dwc/pci-keystone-dw.c | 13 +++--- >> drivers/pci/dwc/pcie-armada8k.c | 38 ++++++++-------- >> drivers/pci/dwc/pcie-artpec6.c | 6 +-- >> drivers/pci/dwc/pcie-designware-host.c | 18 ++++---- >> drivers/pci/dwc/pcie-designware.c | 77 +++++++++++++++++++------------- >> drivers/pci/dwc/pcie-designware.h | 14 +++--- >> drivers/pci/dwc/pcie-hisi.c | 14 +++--- >> 11 files changed, 147 insertions(+), 129 deletions(-) >> >> diff --git a/drivers/pci/dwc/Kconfig b/drivers/pci/dwc/Kconfig >> index dfb8a69..cb3d5d0 100644 >> --- a/drivers/pci/dwc/Kconfig >> +++ b/drivers/pci/dwc/Kconfig >> @@ -36,7 +36,7 @@ config PCIE_DW_PLAT >> config PCI_EXYNOS >> bool "Samsung Exynos PCIe controller" >> depends on PCI >> - depends on SOC_EXYNOS5440 >> + depends on SOC_EXYNOS5440 || COMPILE_TEST > > Kishon, I have the idea that Bjorn suggested some time ago not to use > COMPILE_TEST, because there were some problems in some drivers that needed > specific arch stuff. sigh.. this spilled through from my testing. This Kconfig changes was un-intentional. Thanks Kishon
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v2 0/7] PCI: dwc: miscellaneous fixes and cleanups Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-07 11:00 +0100
[PATCH v2 1/7] PCI: dwc: designware: Add new *ops* for cpu addr fixup Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-07 11:00 +0100
Re: [PATCH v2 1/7] PCI: dwc: designware: Add new *ops* for cpu addr fixup Joao Pinto <Joao.Pinto@synopsys.com> - 2017-03-07 12:20 +0100
[PATCH v2 4/7] PCI: dwc: all: Modify dbi accessors to take dbi_base as argument Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-07 11:00 +0100
Re: [PATCH v2 4/7] PCI: dwc: all: Modify dbi accessors to take dbi_base as argument Joao Pinto <Joao.Pinto@synopsys.com> - 2017-03-07 13:30 +0100
[PATCH v2 2/7] PCI: dwc: dra7xx: Populate cpu_addr_fixup ops Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-07 11:00 +0100
Re: [PATCH v2 2/7] PCI: dwc: dra7xx: Populate cpu_addr_fixup ops Joao Pinto <Joao.Pinto@synopsys.com> - 2017-03-07 12:30 +0100
[PATCH v2 3/7] PCI: dwc: artpec6: Populate cpu_addr_fixup ops Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-07 11:00 +0100
Re: [PATCH v2 3/7] PCI: dwc: artpec6: Populate cpu_addr_fixup ops Joao Pinto <Joao.Pinto@synopsys.com> - 2017-03-07 12:30 +0100
[PATCH v2 6/7] PCI: dwc: designware: Modify _unroll() to _ob_unroll() Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-07 11:10 +0100
Re: [PATCH v2 5/7] PCI: dwc: all: Modify dbi accessors to access data of 4/2/1 bytes Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-07 12:30 +0100
Re: [PATCH v2 5/7] PCI: dwc: all: Modify dbi accessors to access data of 4/2/1 bytes Joao Pinto <Joao.Pinto@synopsys.com> - 2017-03-07 15:30 +0100
[PATCH v2 5/7] PCI: dwc: all: Modify dbi accessors to access data of 4/2/1 bytes Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-08 19:40 +0100
csiph-web