Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-04 Thread Ray Jui
Hi Lorenzo,

On 4/3/2019 4:31 AM, Lorenzo Pieralisi wrote:
> On Wed, Apr 03, 2019 at 08:41:44AM +0530, Srinath Mannam wrote:
>> Hi Lorenzo,
>>
>> Please see my reply below,
>>
>> On Tue, Apr 2, 2019 at 7:08 PM Lorenzo Pieralisi
>>  wrote:
>>>
>>> On Tue, Apr 02, 2019 at 04:16:13PM +0530, Srinath Mannam wrote:
>>>
>>> [...]
>>>
> Ok - I start to understand. What does it mean in HW terms that your
> 32bit AXI address region size is 32MB ? Please explain to me in details.
>
 In our PCIe controller HW, AXI address from 0x4200 to 0x4400
 of 32MB size and .
 AXI address from 0x4 to 0x48000 of 2GB size are provided
 to map ob address.
 First IO region is inside 32bit address and second IO region is
 outside 32bit address.
 This code change is to map first IO region(0x4200 to 0x4400).

> IIUC you are using an OARR0 of 128MB in size to map a 32MB address
> region, that's what I understand this patch does (and the lowest index
> corresponds to the smallest possible size - it is far from clear by
> looking at the patch).
 Yes, lowest index corresponds to smallest possible size (128MB).
 In our controller we have multiple windows like OARR0, OARR1, OARR2,
 OARR3 all supports multiple sizes from 128MB to 1024MB.
 These details are given at the top of this driver file, as shown
 below. all windows supports 128MB size still we must use OARR0 window
 to configure first IO region(0x4200 to 0x4400).

 static const struct iproc_pcie_ob_map paxb_v2_ob_map[] = {
 {
 /* OARR0/OMAP0 */
 .window_sizes = { 128, 256 },
 .nr_sizes = 2,
 },
 {
 /* OARR1/OMAP1 */
 .window_sizes = { 128, 256 },
 .nr_sizes = 2,
 },
 {
 /* OARR2/OMAP2 */
 .window_sizes = { 128, 256, 512, 1024 },
 .nr_sizes = 4,
 },
 {
 /* OARR3/OMAP3 */
 .window_sizes = { 128, 256, 512, 1024 },
 .nr_sizes = 4,
 },
 };
>>>
>>> Ok so this patch allows mapping an AXI I/O window that is smaller
>>> than OARR possible sizes, why it was not done from the beginning
>>> I really do not know.
>>>
>> Same Iproc driver we use for multiple SOCs, in previous SOCs does not
>> have 32-bit AXI address region to map ob.
>> In the present SOC, 32-bit AXI address region is available so that
>> this change is added.
>>
>>> Now explain this to me please:
>>>
 This patch add outbound window configuration to map below 32-bit I/O range
 with corresponding PCI memory, which helps to access I/O region in ARM
 32-bit and one to one mapping of I/O region to PCI memory.

 Ex:
 1. ranges DT property given for current driver is,
 ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
 I/O region address is 0x4
 2. ranges DT property can be given after this patch,
 ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
 I/O region address is 0x4200
>>>
>>> Why 1:1 AXI<->PCI address mapping is not possible in (1), how does the
>>> current code works on 32-bit systems and what's the benefit your change
>>> is bringing.
>> non-prefetchable memory range can only support 32-bit addresses, so
>> that we have taken 32-bit PCI bus address in (1).
>> current code does not work in 32-bit systems. In the present SOC with
>> this new change we can access from 32-bit CPU.
> 
> Thank you. I rewrote the log and pushed patches to pci/iproc, please
> have a look (Ray/Scott please do have a look too) and report back
> if that's fine.>

I reviewed the rephrased commit message by you in pci/iproc branch. It
looks very good to me. Thank you so much for helping with this!

Ray

> Do you agree that the initial commit was lacking _significant_
> information ? Please remember that the commit log plays a fundamental
> part in understanding a change and this one is a very important one
> so I am being pedantic on it.
> 
> Thanks,
> Lorenzo
> 


Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-03 Thread Srinath Mannam
Hi Lorenzo,

I am sorry, I took your long time. In my commit log I gave details
about purpose of feature instead of implementation.
Thanks a lot for all inputs and knowledge. I will remember and follow
these notes while writing commit log.
commit log re-written by you is very much impressive and have detailed
description of feature and implementation.

Thank again for you patience.

Regards,
Srinath.

On Wed, Apr 3, 2019 at 5:01 PM Lorenzo Pieralisi
 wrote:
>
> On Wed, Apr 03, 2019 at 08:41:44AM +0530, Srinath Mannam wrote:
> > Hi Lorenzo,
> >
> > Please see my reply below,
> >
> > On Tue, Apr 2, 2019 at 7:08 PM Lorenzo Pieralisi
> >  wrote:
> > >
> > > On Tue, Apr 02, 2019 at 04:16:13PM +0530, Srinath Mannam wrote:
> > >
> > > [...]
> > >
> > > > > Ok - I start to understand. What does it mean in HW terms that your
> > > > > 32bit AXI address region size is 32MB ? Please explain to me in 
> > > > > details.
> > > > >
> > > > In our PCIe controller HW, AXI address from 0x4200 to 0x4400
> > > > of 32MB size and .
> > > > AXI address from 0x4 to 0x48000 of 2GB size are provided
> > > > to map ob address.
> > > > First IO region is inside 32bit address and second IO region is
> > > > outside 32bit address.
> > > > This code change is to map first IO region(0x4200 to 0x4400).
> > > >
> > > > > IIUC you are using an OARR0 of 128MB in size to map a 32MB address
> > > > > region, that's what I understand this patch does (and the lowest index
> > > > > corresponds to the smallest possible size - it is far from clear by
> > > > > looking at the patch).
> > > > Yes, lowest index corresponds to smallest possible size (128MB).
> > > > In our controller we have multiple windows like OARR0, OARR1, OARR2,
> > > > OARR3 all supports multiple sizes from 128MB to 1024MB.
> > > > These details are given at the top of this driver file, as shown
> > > > below. all windows supports 128MB size still we must use OARR0 window
> > > > to configure first IO region(0x4200 to 0x4400).
> > > >
> > > > static const struct iproc_pcie_ob_map paxb_v2_ob_map[] = {
> > > > {
> > > > /* OARR0/OMAP0 */
> > > > .window_sizes = { 128, 256 },
> > > > .nr_sizes = 2,
> > > > },
> > > > {
> > > > /* OARR1/OMAP1 */
> > > > .window_sizes = { 128, 256 },
> > > > .nr_sizes = 2,
> > > > },
> > > > {
> > > > /* OARR2/OMAP2 */
> > > > .window_sizes = { 128, 256, 512, 1024 },
> > > > .nr_sizes = 4,
> > > > },
> > > > {
> > > > /* OARR3/OMAP3 */
> > > > .window_sizes = { 128, 256, 512, 1024 },
> > > > .nr_sizes = 4,
> > > > },
> > > > };
> > >
> > > Ok so this patch allows mapping an AXI I/O window that is smaller
> > > than OARR possible sizes, why it was not done from the beginning
> > > I really do not know.
> > >
> > Same Iproc driver we use for multiple SOCs, in previous SOCs does not
> > have 32-bit AXI address region to map ob.
> > In the present SOC, 32-bit AXI address region is available so that
> > this change is added.
> >
> > > Now explain this to me please:
> > >
> > > > This patch add outbound window configuration to map below 32-bit I/O 
> > > > range
> > > > with corresponding PCI memory, which helps to access I/O region in ARM
> > > > 32-bit and one to one mapping of I/O region to PCI memory.
> > > >
> > > > Ex:
> > > > 1. ranges DT property given for current driver is,
> > > > ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> > > > I/O region address is 0x4
> > > > 2. ranges DT property can be given after this patch,
> > > > ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> > > > I/O region address is 0x4200
> > >
> > > Why 1:1 AXI<->PCI address mapping is not possible in (1), how does the
> > > current code works on 32-bit systems and what's the benefit your change
> > > is bringing.
> > non-prefetchable memory range can only support 32-bit addresses, so
> > that we have taken 32-bit PCI bus address in (1).
> > current code does not work in 32-bit systems. In the present SOC with
> > this new change we can access from 32-bit CPU.
>
> Thank you. I rewrote the log and pushed patches to pci/iproc, please
> have a look (Ray/Scott please do have a look too) and report back
> if that's fine.
>
> Do you agree that the initial commit was lacking _significant_
> information ? Please remember that the commit log plays a fundamental
> part in understanding a change and this one is a very important one
> so I am being pedantic on it.
>
> Thanks,
> Lorenzo


Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-03 Thread Lorenzo Pieralisi
On Wed, Apr 03, 2019 at 08:41:44AM +0530, Srinath Mannam wrote:
> Hi Lorenzo,
> 
> Please see my reply below,
> 
> On Tue, Apr 2, 2019 at 7:08 PM Lorenzo Pieralisi
>  wrote:
> >
> > On Tue, Apr 02, 2019 at 04:16:13PM +0530, Srinath Mannam wrote:
> >
> > [...]
> >
> > > > Ok - I start to understand. What does it mean in HW terms that your
> > > > 32bit AXI address region size is 32MB ? Please explain to me in details.
> > > >
> > > In our PCIe controller HW, AXI address from 0x4200 to 0x4400
> > > of 32MB size and .
> > > AXI address from 0x4 to 0x48000 of 2GB size are provided
> > > to map ob address.
> > > First IO region is inside 32bit address and second IO region is
> > > outside 32bit address.
> > > This code change is to map first IO region(0x4200 to 0x4400).
> > >
> > > > IIUC you are using an OARR0 of 128MB in size to map a 32MB address
> > > > region, that's what I understand this patch does (and the lowest index
> > > > corresponds to the smallest possible size - it is far from clear by
> > > > looking at the patch).
> > > Yes, lowest index corresponds to smallest possible size (128MB).
> > > In our controller we have multiple windows like OARR0, OARR1, OARR2,
> > > OARR3 all supports multiple sizes from 128MB to 1024MB.
> > > These details are given at the top of this driver file, as shown
> > > below. all windows supports 128MB size still we must use OARR0 window
> > > to configure first IO region(0x4200 to 0x4400).
> > >
> > > static const struct iproc_pcie_ob_map paxb_v2_ob_map[] = {
> > > {
> > > /* OARR0/OMAP0 */
> > > .window_sizes = { 128, 256 },
> > > .nr_sizes = 2,
> > > },
> > > {
> > > /* OARR1/OMAP1 */
> > > .window_sizes = { 128, 256 },
> > > .nr_sizes = 2,
> > > },
> > > {
> > > /* OARR2/OMAP2 */
> > > .window_sizes = { 128, 256, 512, 1024 },
> > > .nr_sizes = 4,
> > > },
> > > {
> > > /* OARR3/OMAP3 */
> > > .window_sizes = { 128, 256, 512, 1024 },
> > > .nr_sizes = 4,
> > > },
> > > };
> >
> > Ok so this patch allows mapping an AXI I/O window that is smaller
> > than OARR possible sizes, why it was not done from the beginning
> > I really do not know.
> >
> Same Iproc driver we use for multiple SOCs, in previous SOCs does not
> have 32-bit AXI address region to map ob.
> In the present SOC, 32-bit AXI address region is available so that
> this change is added.
> 
> > Now explain this to me please:
> >
> > > This patch add outbound window configuration to map below 32-bit I/O range
> > > with corresponding PCI memory, which helps to access I/O region in ARM
> > > 32-bit and one to one mapping of I/O region to PCI memory.
> > >
> > > Ex:
> > > 1. ranges DT property given for current driver is,
> > > ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> > > I/O region address is 0x4
> > > 2. ranges DT property can be given after this patch,
> > > ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> > > I/O region address is 0x4200
> >
> > Why 1:1 AXI<->PCI address mapping is not possible in (1), how does the
> > current code works on 32-bit systems and what's the benefit your change
> > is bringing.
> non-prefetchable memory range can only support 32-bit addresses, so
> that we have taken 32-bit PCI bus address in (1).
> current code does not work in 32-bit systems. In the present SOC with
> this new change we can access from 32-bit CPU.

Thank you. I rewrote the log and pushed patches to pci/iproc, please
have a look (Ray/Scott please do have a look too) and report back
if that's fine.

Do you agree that the initial commit was lacking _significant_
information ? Please remember that the commit log plays a fundamental
part in understanding a change and this one is a very important one
so I am being pedantic on it.

Thanks,
Lorenzo


Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-02 Thread Srinath Mannam
Hi Lorenzo,

Please see my reply below,

On Tue, Apr 2, 2019 at 7:08 PM Lorenzo Pieralisi
 wrote:
>
> On Tue, Apr 02, 2019 at 04:16:13PM +0530, Srinath Mannam wrote:
>
> [...]
>
> > > Ok - I start to understand. What does it mean in HW terms that your
> > > 32bit AXI address region size is 32MB ? Please explain to me in details.
> > >
> > In our PCIe controller HW, AXI address from 0x4200 to 0x4400
> > of 32MB size and .
> > AXI address from 0x4 to 0x48000 of 2GB size are provided
> > to map ob address.
> > First IO region is inside 32bit address and second IO region is
> > outside 32bit address.
> > This code change is to map first IO region(0x4200 to 0x4400).
> >
> > > IIUC you are using an OARR0 of 128MB in size to map a 32MB address
> > > region, that's what I understand this patch does (and the lowest index
> > > corresponds to the smallest possible size - it is far from clear by
> > > looking at the patch).
> > Yes, lowest index corresponds to smallest possible size (128MB).
> > In our controller we have multiple windows like OARR0, OARR1, OARR2,
> > OARR3 all supports multiple sizes from 128MB to 1024MB.
> > These details are given at the top of this driver file, as shown
> > below. all windows supports 128MB size still we must use OARR0 window
> > to configure first IO region(0x4200 to 0x4400).
> >
> > static const struct iproc_pcie_ob_map paxb_v2_ob_map[] = {
> > {
> > /* OARR0/OMAP0 */
> > .window_sizes = { 128, 256 },
> > .nr_sizes = 2,
> > },
> > {
> > /* OARR1/OMAP1 */
> > .window_sizes = { 128, 256 },
> > .nr_sizes = 2,
> > },
> > {
> > /* OARR2/OMAP2 */
> > .window_sizes = { 128, 256, 512, 1024 },
> > .nr_sizes = 4,
> > },
> > {
> > /* OARR3/OMAP3 */
> > .window_sizes = { 128, 256, 512, 1024 },
> > .nr_sizes = 4,
> > },
> > };
>
> Ok so this patch allows mapping an AXI I/O window that is smaller
> than OARR possible sizes, why it was not done from the beginning
> I really do not know.
>
Same Iproc driver we use for multiple SOCs, in previous SOCs does not
have 32-bit AXI address region to map ob.
In the present SOC, 32-bit AXI address region is available so that
this change is added.

> Now explain this to me please:
>
> > This patch add outbound window configuration to map below 32-bit I/O range
> > with corresponding PCI memory, which helps to access I/O region in ARM
> > 32-bit and one to one mapping of I/O region to PCI memory.
> >
> > Ex:
> > 1. ranges DT property given for current driver is,
> > ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> > I/O region address is 0x4
> > 2. ranges DT property can be given after this patch,
> > ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> > I/O region address is 0x4200
>
> Why 1:1 AXI<->PCI address mapping is not possible in (1), how does the
> current code works on 32-bit systems and what's the benefit your change
> is bringing.
non-prefetchable memory range can only support 32-bit addresses, so
that we have taken 32-bit PCI bus address in (1).
current code does not work in 32-bit systems. In the present SOC with
this new change we can access from 32-bit CPU.

Regards,
Srinath.
>
> Thanks,
> Lorenzo


Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-02 Thread Lorenzo Pieralisi
On Tue, Apr 02, 2019 at 04:16:13PM +0530, Srinath Mannam wrote:

[...]

> > Ok - I start to understand. What does it mean in HW terms that your
> > 32bit AXI address region size is 32MB ? Please explain to me in details.
> >
> In our PCIe controller HW, AXI address from 0x4200 to 0x4400
> of 32MB size and .
> AXI address from 0x4 to 0x48000 of 2GB size are provided
> to map ob address.
> First IO region is inside 32bit address and second IO region is
> outside 32bit address.
> This code change is to map first IO region(0x4200 to 0x4400).
> 
> > IIUC you are using an OARR0 of 128MB in size to map a 32MB address
> > region, that's what I understand this patch does (and the lowest index
> > corresponds to the smallest possible size - it is far from clear by
> > looking at the patch).
> Yes, lowest index corresponds to smallest possible size (128MB).
> In our controller we have multiple windows like OARR0, OARR1, OARR2,
> OARR3 all supports multiple sizes from 128MB to 1024MB.
> These details are given at the top of this driver file, as shown
> below. all windows supports 128MB size still we must use OARR0 window
> to configure first IO region(0x4200 to 0x4400).
> 
> static const struct iproc_pcie_ob_map paxb_v2_ob_map[] = {
> {
> /* OARR0/OMAP0 */
> .window_sizes = { 128, 256 },
> .nr_sizes = 2,
> },
> {
> /* OARR1/OMAP1 */
> .window_sizes = { 128, 256 },
> .nr_sizes = 2,
> },
> {
> /* OARR2/OMAP2 */
> .window_sizes = { 128, 256, 512, 1024 },
> .nr_sizes = 4,
> },
> {
> /* OARR3/OMAP3 */
> .window_sizes = { 128, 256, 512, 1024 },
> .nr_sizes = 4,
> },
> };

Ok so this patch allows mapping an AXI I/O window that is smaller
than OARR possible sizes, why it was not done from the beginning
I really do not know.

Now explain this to me please:

> This patch add outbound window configuration to map below 32-bit I/O range
> with corresponding PCI memory, which helps to access I/O region in ARM
> 32-bit and one to one mapping of I/O region to PCI memory.
>
> Ex:
> 1. ranges DT property given for current driver is,
> ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> I/O region address is 0x4
> 2. ranges DT property can be given after this patch,
> ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> I/O region address is 0x4200

Why 1:1 AXI<->PCI address mapping is not possible in (1), how does the
current code works on 32-bit systems and what's the benefit your change
is bringing.

Thanks,
Lorenzo


Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-02 Thread Srinath Mannam
Hi Lorenzo,

Please see my reply below,

On Tue, Apr 2, 2019 at 3:56 PM Lorenzo Pieralisi
 wrote:
>
> On Tue, Apr 02, 2019 at 03:20:21PM +0530, Srinath Mannam wrote:
> > Hi Ray,
> >
> > Thanks for detailed explanation.
> > Please see some more details below.
> >
> > On Tue, Apr 2, 2019 at 3:33 AM Ray Jui  wrote:
> > >
> > > Hi Lorenzo/Srinath,
> > >
> > > I look at the commit message again and indeed it looks quite confusing.
> > >
> > > I'll add my comment inline in the code section. I hope that will help to
> > > make it more clear.
> > >
> > > On 4/1/2019 9:44 AM, Lorenzo Pieralisi wrote:
> > > > On Mon, Apr 01, 2019 at 11:04:48AM +0530, Srinath Mannam wrote:
> > > >> Hi Lorenzo,
> > > >>
> > > >> Please see my reply below,
> > > >>
> > > >> On Fri, Mar 29, 2019 at 11:06 PM Lorenzo Pieralisi
> > > >>  wrote:
> > > >>>
> > > >>> On Fri, Mar 01, 2019 at 10:22:16AM +0530, Srinath Mannam wrote:
> > >  In the present driver outbound window configuration is done to map 
> > >  above
> > >  32-bit address I/O regions with corresponding PCI memory range given 
> > >  in
> > >  ranges DT property.
> > > 
> > >  This patch add outbound window configuration to map below 32-bit I/O 
> > >  range
> > >  with corresponding PCI memory, which helps to access I/O region in 
> > >  ARM
> > >  32-bit and one to one mapping of I/O region to PCI memory.
> > > 
> > >  Ex:
> > >  1. ranges DT property given for current driver is,
> > >  ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> > >  I/O region address is 0x4
> > >  2. ranges DT property can be given after this patch,
> > >  ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> > >  I/O region address is 0x4200
> > > >>>
> > > >>> I was applying this patch but I don't understand the commit log and
> > > >>> how it matches the code, please explain it to me and I will reword
> > > >>> it.
> > > >> Iproc PCIe host controller supports outbound address translation
> > > >> feature to translate AXI address to PCI bus address.
> > > >> IO address ranges (AXI and PCI) given through ranges DT property have
> > > >> to program to controller outbound window registers.
> > > >> Present driver has the support for only 64bit AXI address. so that
> > > >> ranges DT property has given as 64bit AXI address and 32 bit
> > > >> PCI bus address.
> > > >> But with this patch 32-bit AXI address also could be programmed to
> > > >> Iproc host controller outbound window registers. so that ranges
> > > >> DT property can have 32bit AXI address which can map to 32-bit PCI bus 
> > > >> address.
> > > >
> > > > The code change seems to add a check for the window size, I see no
> > > > notion of 64 vs 32 bit addressing there so I am pretty sure there is
> > > > something you are not telling me that is implicit in the IProc outbound
> > > > window configuration, for instance why is the lowest index window
> > > > considered for 32-bit.
> > > >
> > > > AFAICS you are adding code to allow a window whose size is < than
> > > > the lowest index in the ob_map array. How this relates to 64 vs
> > > > 32 bit addresses is not clear but it should be.
> > > >
> > > > When I read your commit log it is impossible to understand how it
> > > > correlates to the code you are changing - I still have not figured it
> > > > out myself.
> > > >
> > > > Please explain in detail to me how this works, forget DT changes I
> > > > want to understand how HW works.
> > > >
> > > > Lorenzo
> > > >
> > > >> Example given in commit log is describing ranges DT property changes
> > > >> with and without this patch.
> > > >> In the case, without this patch AXI address is more than 32bit
> > > >> "0x4". and with this patch AXI address is 32-bit "0x4200".
> > > >> PCI bus address is 32 bit address in both the cases "0x4000" and 
> > > >> 0x4200.
> > > >>
> > > >> Regards,
> > > >> Srinath.
> > > >>> Thanks,
> > > >>> Lorenzo
> > > >>>
> > >  Signed-off-by: Srinath Mannam 
> > >  Signed-off-by: Abhishek Shah 
> > >  Signed-off-by: Ray Jui 
> > >  ---
> > >   drivers/pci/controller/pcie-iproc.c | 21 +++--
> > >   1 file changed, 19 insertions(+), 2 deletions(-)
> > > 
> > >  diff --git a/drivers/pci/controller/pcie-iproc.c 
> > >  b/drivers/pci/controller/pcie-iproc.c
> > >  index b882255..080f142 100644
> > >  --- a/drivers/pci/controller/pcie-iproc.c
> > >  +++ b/drivers/pci/controller/pcie-iproc.c
> > >  @@ -955,8 +955,25 @@ static int iproc_pcie_setup_ob(struct 
> > >  iproc_pcie *pcie, u64 axi_addr,
> > >    resource_size_t window_size =
> > >    ob_map->window_sizes[size_idx] * SZ_1M;
> > > 
> > >  - if (size < window_size)
> > >  - continue;
> > >  + /*
> > >  

Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-02 Thread Lorenzo Pieralisi
On Tue, Apr 02, 2019 at 03:20:21PM +0530, Srinath Mannam wrote:
> Hi Ray,
> 
> Thanks for detailed explanation.
> Please see some more details below.
> 
> On Tue, Apr 2, 2019 at 3:33 AM Ray Jui  wrote:
> >
> > Hi Lorenzo/Srinath,
> >
> > I look at the commit message again and indeed it looks quite confusing.
> >
> > I'll add my comment inline in the code section. I hope that will help to
> > make it more clear.
> >
> > On 4/1/2019 9:44 AM, Lorenzo Pieralisi wrote:
> > > On Mon, Apr 01, 2019 at 11:04:48AM +0530, Srinath Mannam wrote:
> > >> Hi Lorenzo,
> > >>
> > >> Please see my reply below,
> > >>
> > >> On Fri, Mar 29, 2019 at 11:06 PM Lorenzo Pieralisi
> > >>  wrote:
> > >>>
> > >>> On Fri, Mar 01, 2019 at 10:22:16AM +0530, Srinath Mannam wrote:
> >  In the present driver outbound window configuration is done to map 
> >  above
> >  32-bit address I/O regions with corresponding PCI memory range given in
> >  ranges DT property.
> > 
> >  This patch add outbound window configuration to map below 32-bit I/O 
> >  range
> >  with corresponding PCI memory, which helps to access I/O region in ARM
> >  32-bit and one to one mapping of I/O region to PCI memory.
> > 
> >  Ex:
> >  1. ranges DT property given for current driver is,
> >  ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> >  I/O region address is 0x4
> >  2. ranges DT property can be given after this patch,
> >  ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> >  I/O region address is 0x4200
> > >>>
> > >>> I was applying this patch but I don't understand the commit log and
> > >>> how it matches the code, please explain it to me and I will reword
> > >>> it.
> > >> Iproc PCIe host controller supports outbound address translation
> > >> feature to translate AXI address to PCI bus address.
> > >> IO address ranges (AXI and PCI) given through ranges DT property have
> > >> to program to controller outbound window registers.
> > >> Present driver has the support for only 64bit AXI address. so that
> > >> ranges DT property has given as 64bit AXI address and 32 bit
> > >> PCI bus address.
> > >> But with this patch 32-bit AXI address also could be programmed to
> > >> Iproc host controller outbound window registers. so that ranges
> > >> DT property can have 32bit AXI address which can map to 32-bit PCI bus 
> > >> address.
> > >
> > > The code change seems to add a check for the window size, I see no
> > > notion of 64 vs 32 bit addressing there so I am pretty sure there is
> > > something you are not telling me that is implicit in the IProc outbound
> > > window configuration, for instance why is the lowest index window
> > > considered for 32-bit.
> > >
> > > AFAICS you are adding code to allow a window whose size is < than
> > > the lowest index in the ob_map array. How this relates to 64 vs
> > > 32 bit addresses is not clear but it should be.
> > >
> > > When I read your commit log it is impossible to understand how it
> > > correlates to the code you are changing - I still have not figured it
> > > out myself.
> > >
> > > Please explain in detail to me how this works, forget DT changes I
> > > want to understand how HW works.
> > >
> > > Lorenzo
> > >
> > >> Example given in commit log is describing ranges DT property changes
> > >> with and without this patch.
> > >> In the case, without this patch AXI address is more than 32bit
> > >> "0x4". and with this patch AXI address is 32-bit "0x4200".
> > >> PCI bus address is 32 bit address in both the cases "0x4000" and 
> > >> 0x4200.
> > >>
> > >> Regards,
> > >> Srinath.
> > >>> Thanks,
> > >>> Lorenzo
> > >>>
> >  Signed-off-by: Srinath Mannam 
> >  Signed-off-by: Abhishek Shah 
> >  Signed-off-by: Ray Jui 
> >  ---
> >   drivers/pci/controller/pcie-iproc.c | 21 +++--
> >   1 file changed, 19 insertions(+), 2 deletions(-)
> > 
> >  diff --git a/drivers/pci/controller/pcie-iproc.c 
> >  b/drivers/pci/controller/pcie-iproc.c
> >  index b882255..080f142 100644
> >  --- a/drivers/pci/controller/pcie-iproc.c
> >  +++ b/drivers/pci/controller/pcie-iproc.c
> >  @@ -955,8 +955,25 @@ static int iproc_pcie_setup_ob(struct iproc_pcie 
> >  *pcie, u64 axi_addr,
> >    resource_size_t window_size =
> >    ob_map->window_sizes[size_idx] * SZ_1M;
> > 
> >  - if (size < window_size)
> >  - continue;
> >  + /*
> >  +  * Keep iterating until we reach the last window 
> >  and
> >  +  * with the minimal window size at index zero. 
> >  In this
> >  +  * case, we take a compromise by mapping it 
> >  using the
> >  +  * minimum window size that can be 

Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-02 Thread Srinath Mannam
Hi Ray,

Thanks for detailed explanation.
Please see some more details below.

On Tue, Apr 2, 2019 at 3:33 AM Ray Jui  wrote:
>
> Hi Lorenzo/Srinath,
>
> I look at the commit message again and indeed it looks quite confusing.
>
> I'll add my comment inline in the code section. I hope that will help to
> make it more clear.
>
> On 4/1/2019 9:44 AM, Lorenzo Pieralisi wrote:
> > On Mon, Apr 01, 2019 at 11:04:48AM +0530, Srinath Mannam wrote:
> >> Hi Lorenzo,
> >>
> >> Please see my reply below,
> >>
> >> On Fri, Mar 29, 2019 at 11:06 PM Lorenzo Pieralisi
> >>  wrote:
> >>>
> >>> On Fri, Mar 01, 2019 at 10:22:16AM +0530, Srinath Mannam wrote:
>  In the present driver outbound window configuration is done to map above
>  32-bit address I/O regions with corresponding PCI memory range given in
>  ranges DT property.
> 
>  This patch add outbound window configuration to map below 32-bit I/O 
>  range
>  with corresponding PCI memory, which helps to access I/O region in ARM
>  32-bit and one to one mapping of I/O region to PCI memory.
> 
>  Ex:
>  1. ranges DT property given for current driver is,
>  ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
>  I/O region address is 0x4
>  2. ranges DT property can be given after this patch,
>  ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
>  I/O region address is 0x4200
> >>>
> >>> I was applying this patch but I don't understand the commit log and
> >>> how it matches the code, please explain it to me and I will reword
> >>> it.
> >> Iproc PCIe host controller supports outbound address translation
> >> feature to translate AXI address to PCI bus address.
> >> IO address ranges (AXI and PCI) given through ranges DT property have
> >> to program to controller outbound window registers.
> >> Present driver has the support for only 64bit AXI address. so that
> >> ranges DT property has given as 64bit AXI address and 32 bit
> >> PCI bus address.
> >> But with this patch 32-bit AXI address also could be programmed to
> >> Iproc host controller outbound window registers. so that ranges
> >> DT property can have 32bit AXI address which can map to 32-bit PCI bus 
> >> address.
> >
> > The code change seems to add a check for the window size, I see no
> > notion of 64 vs 32 bit addressing there so I am pretty sure there is
> > something you are not telling me that is implicit in the IProc outbound
> > window configuration, for instance why is the lowest index window
> > considered for 32-bit.
> >
> > AFAICS you are adding code to allow a window whose size is < than
> > the lowest index in the ob_map array. How this relates to 64 vs
> > 32 bit addresses is not clear but it should be.
> >
> > When I read your commit log it is impossible to understand how it
> > correlates to the code you are changing - I still have not figured it
> > out myself.
> >
> > Please explain in detail to me how this works, forget DT changes I
> > want to understand how HW works.
> >
> > Lorenzo
> >
> >> Example given in commit log is describing ranges DT property changes
> >> with and without this patch.
> >> In the case, without this patch AXI address is more than 32bit
> >> "0x4". and with this patch AXI address is 32-bit "0x4200".
> >> PCI bus address is 32 bit address in both the cases "0x4000" and 
> >> 0x4200.
> >>
> >> Regards,
> >> Srinath.
> >>> Thanks,
> >>> Lorenzo
> >>>
>  Signed-off-by: Srinath Mannam 
>  Signed-off-by: Abhishek Shah 
>  Signed-off-by: Ray Jui 
>  ---
>   drivers/pci/controller/pcie-iproc.c | 21 +++--
>   1 file changed, 19 insertions(+), 2 deletions(-)
> 
>  diff --git a/drivers/pci/controller/pcie-iproc.c 
>  b/drivers/pci/controller/pcie-iproc.c
>  index b882255..080f142 100644
>  --- a/drivers/pci/controller/pcie-iproc.c
>  +++ b/drivers/pci/controller/pcie-iproc.c
>  @@ -955,8 +955,25 @@ static int iproc_pcie_setup_ob(struct iproc_pcie 
>  *pcie, u64 axi_addr,
>    resource_size_t window_size =
>    ob_map->window_sizes[size_idx] * SZ_1M;
> 
>  - if (size < window_size)
>  - continue;
>  + /*
>  +  * Keep iterating until we reach the last window 
>  and
>  +  * with the minimal window size at index zero. In 
>  this
>  +  * case, we take a compromise by mapping it using 
>  the
>  +  * minimum window size that can be supported
>  +  */
>
> I think the code comment above is much more clear than the commit
> message. It looks like the commit message was to describe a particular
> use case that prompts the code change. However, if I remember correctly,
> during our internal review, I already 

Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-01 Thread Ray Jui
Hi Lorenzo/Srinath,

I look at the commit message again and indeed it looks quite confusing.

I'll add my comment inline in the code section. I hope that will help to
make it more clear.

On 4/1/2019 9:44 AM, Lorenzo Pieralisi wrote:
> On Mon, Apr 01, 2019 at 11:04:48AM +0530, Srinath Mannam wrote:
>> Hi Lorenzo,
>>
>> Please see my reply below,
>>
>> On Fri, Mar 29, 2019 at 11:06 PM Lorenzo Pieralisi
>>  wrote:
>>>
>>> On Fri, Mar 01, 2019 at 10:22:16AM +0530, Srinath Mannam wrote:
 In the present driver outbound window configuration is done to map above
 32-bit address I/O regions with corresponding PCI memory range given in
 ranges DT property.

 This patch add outbound window configuration to map below 32-bit I/O range
 with corresponding PCI memory, which helps to access I/O region in ARM
 32-bit and one to one mapping of I/O region to PCI memory.

 Ex:
 1. ranges DT property given for current driver is,
 ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
 I/O region address is 0x4
 2. ranges DT property can be given after this patch,
 ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
 I/O region address is 0x4200
>>>
>>> I was applying this patch but I don't understand the commit log and
>>> how it matches the code, please explain it to me and I will reword
>>> it.
>> Iproc PCIe host controller supports outbound address translation
>> feature to translate AXI address to PCI bus address.
>> IO address ranges (AXI and PCI) given through ranges DT property have
>> to program to controller outbound window registers.
>> Present driver has the support for only 64bit AXI address. so that
>> ranges DT property has given as 64bit AXI address and 32 bit
>> PCI bus address.
>> But with this patch 32-bit AXI address also could be programmed to
>> Iproc host controller outbound window registers. so that ranges
>> DT property can have 32bit AXI address which can map to 32-bit PCI bus 
>> address.
> 
> The code change seems to add a check for the window size, I see no
> notion of 64 vs 32 bit addressing there so I am pretty sure there is
> something you are not telling me that is implicit in the IProc outbound
> window configuration, for instance why is the lowest index window
> considered for 32-bit.
> 
> AFAICS you are adding code to allow a window whose size is < than
> the lowest index in the ob_map array. How this relates to 64 vs
> 32 bit addresses is not clear but it should be.
> 
> When I read your commit log it is impossible to understand how it
> correlates to the code you are changing - I still have not figured it
> out myself.
> 
> Please explain in detail to me how this works, forget DT changes I
> want to understand how HW works.
> 
> Lorenzo
> 
>> Example given in commit log is describing ranges DT property changes
>> with and without this patch.
>> In the case, without this patch AXI address is more than 32bit
>> "0x4". and with this patch AXI address is 32-bit "0x4200".
>> PCI bus address is 32 bit address in both the cases "0x4000" and 
>> 0x4200.
>>
>> Regards,
>> Srinath.
>>> Thanks,
>>> Lorenzo
>>>
 Signed-off-by: Srinath Mannam 
 Signed-off-by: Abhishek Shah 
 Signed-off-by: Ray Jui 
 ---
  drivers/pci/controller/pcie-iproc.c | 21 +++--
  1 file changed, 19 insertions(+), 2 deletions(-)

 diff --git a/drivers/pci/controller/pcie-iproc.c 
 b/drivers/pci/controller/pcie-iproc.c
 index b882255..080f142 100644
 --- a/drivers/pci/controller/pcie-iproc.c
 +++ b/drivers/pci/controller/pcie-iproc.c
 @@ -955,8 +955,25 @@ static int iproc_pcie_setup_ob(struct iproc_pcie 
 *pcie, u64 axi_addr,
   resource_size_t window_size =
   ob_map->window_sizes[size_idx] * SZ_1M;

 - if (size < window_size)
 - continue;
 + /*
 +  * Keep iterating until we reach the last window and
 +  * with the minimal window size at index zero. In 
 this
 +  * case, we take a compromise by mapping it using the
 +  * minimum window size that can be supported
 +  */

I think the code comment above is much more clear than the commit
message. It looks like the commit message was to describe a particular
use case that prompts the code change. However, if I remember correctly,
during our internal review, I already made some modification to the code
to make the change much more generic than dealing with a special use
case. This patch contains the generic change I made.

Basically, 'size' is the intended outbound mapping size (from DT or ACPI
or whatever, it does not really matter). 'window_size' is a specific
mapping window size our PCIe controller can support. Our PCIe 

Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-04-01 Thread Lorenzo Pieralisi
On Mon, Apr 01, 2019 at 11:04:48AM +0530, Srinath Mannam wrote:
> Hi Lorenzo,
> 
> Please see my reply below,
> 
> On Fri, Mar 29, 2019 at 11:06 PM Lorenzo Pieralisi
>  wrote:
> >
> > On Fri, Mar 01, 2019 at 10:22:16AM +0530, Srinath Mannam wrote:
> > > In the present driver outbound window configuration is done to map above
> > > 32-bit address I/O regions with corresponding PCI memory range given in
> > > ranges DT property.
> > >
> > > This patch add outbound window configuration to map below 32-bit I/O range
> > > with corresponding PCI memory, which helps to access I/O region in ARM
> > > 32-bit and one to one mapping of I/O region to PCI memory.
> > >
> > > Ex:
> > > 1. ranges DT property given for current driver is,
> > > ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> > > I/O region address is 0x4
> > > 2. ranges DT property can be given after this patch,
> > > ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> > > I/O region address is 0x4200
> >
> > I was applying this patch but I don't understand the commit log and
> > how it matches the code, please explain it to me and I will reword
> > it.
> Iproc PCIe host controller supports outbound address translation
> feature to translate AXI address to PCI bus address.
> IO address ranges (AXI and PCI) given through ranges DT property have
> to program to controller outbound window registers.
> Present driver has the support for only 64bit AXI address. so that
> ranges DT property has given as 64bit AXI address and 32 bit
> PCI bus address.
> But with this patch 32-bit AXI address also could be programmed to
> Iproc host controller outbound window registers. so that ranges
> DT property can have 32bit AXI address which can map to 32-bit PCI bus 
> address.

The code change seems to add a check for the window size, I see no
notion of 64 vs 32 bit addressing there so I am pretty sure there is
something you are not telling me that is implicit in the IProc outbound
window configuration, for instance why is the lowest index window
considered for 32-bit.

AFAICS you are adding code to allow a window whose size is < than
the lowest index in the ob_map array. How this relates to 64 vs
32 bit addresses is not clear but it should be.

When I read your commit log it is impossible to understand how it
correlates to the code you are changing - I still have not figured it
out myself.

Please explain in detail to me how this works, forget DT changes I
want to understand how HW works.

Lorenzo

> Example given in commit log is describing ranges DT property changes
> with and without this patch.
> In the case, without this patch AXI address is more than 32bit
> "0x4". and with this patch AXI address is 32-bit "0x4200".
> PCI bus address is 32 bit address in both the cases "0x4000" and 
> 0x4200.
> 
> Regards,
> Srinath.
> > Thanks,
> > Lorenzo
> >
> > > Signed-off-by: Srinath Mannam 
> > > Signed-off-by: Abhishek Shah 
> > > Signed-off-by: Ray Jui 
> > > ---
> > >  drivers/pci/controller/pcie-iproc.c | 21 +++--
> > >  1 file changed, 19 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/pci/controller/pcie-iproc.c 
> > > b/drivers/pci/controller/pcie-iproc.c
> > > index b882255..080f142 100644
> > > --- a/drivers/pci/controller/pcie-iproc.c
> > > +++ b/drivers/pci/controller/pcie-iproc.c
> > > @@ -955,8 +955,25 @@ static int iproc_pcie_setup_ob(struct iproc_pcie 
> > > *pcie, u64 axi_addr,
> > >   resource_size_t window_size =
> > >   ob_map->window_sizes[size_idx] * SZ_1M;
> > >
> > > - if (size < window_size)
> > > - continue;
> > > + /*
> > > +  * Keep iterating until we reach the last window and
> > > +  * with the minimal window size at index zero. In 
> > > this
> > > +  * case, we take a compromise by mapping it using 
> > > the
> > > +  * minimum window size that can be supported
> > > +  */
> > > + if (size < window_size) {
> > > + if (size_idx > 0 || window_idx > 0)
> > > + continue;
> > > +
> > > + /*
> > > +  * For the corner case of reaching the 
> > > minimal
> > > +  * window size that can be supported on the
> > > +  * last window
> > > +  */
> > > + axi_addr = ALIGN_DOWN(axi_addr, 
> > > window_size);
> > > + pci_addr = ALIGN_DOWN(pci_addr, 
> > > window_size);
> > > + size = window_size;
> > > + }
> > >
> > >   if (!IS_ALIGNED(axi_addr, window_size) ||
> > >   

Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-03-31 Thread Srinath Mannam
Hi Lorenzo,

Please see my reply below,

On Fri, Mar 29, 2019 at 11:06 PM Lorenzo Pieralisi
 wrote:
>
> On Fri, Mar 01, 2019 at 10:22:16AM +0530, Srinath Mannam wrote:
> > In the present driver outbound window configuration is done to map above
> > 32-bit address I/O regions with corresponding PCI memory range given in
> > ranges DT property.
> >
> > This patch add outbound window configuration to map below 32-bit I/O range
> > with corresponding PCI memory, which helps to access I/O region in ARM
> > 32-bit and one to one mapping of I/O region to PCI memory.
> >
> > Ex:
> > 1. ranges DT property given for current driver is,
> > ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> > I/O region address is 0x4
> > 2. ranges DT property can be given after this patch,
> > ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> > I/O region address is 0x4200
>
> I was applying this patch but I don't understand the commit log and
> how it matches the code, please explain it to me and I will reword
> it.
Iproc PCIe host controller supports outbound address translation
feature to translate AXI address to PCI bus address.
IO address ranges (AXI and PCI) given through ranges DT property have
to program to controller outbound window registers.
Present driver has the support for only 64bit AXI address. so that
ranges DT property has given as 64bit AXI address and 32 bit
PCI bus address.
But with this patch 32-bit AXI address also could be programmed to
Iproc host controller outbound window registers. so that ranges
DT property can have 32bit AXI address which can map to 32-bit PCI bus address.
Example given in commit log is describing ranges DT property changes
with and without this patch.
In the case, without this patch AXI address is more than 32bit
"0x4". and with this patch AXI address is 32-bit "0x4200".
PCI bus address is 32 bit address in both the cases "0x4000" and 0x4200.

Regards,
Srinath.
> Thanks,
> Lorenzo
>
> > Signed-off-by: Srinath Mannam 
> > Signed-off-by: Abhishek Shah 
> > Signed-off-by: Ray Jui 
> > ---
> >  drivers/pci/controller/pcie-iproc.c | 21 +++--
> >  1 file changed, 19 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/pci/controller/pcie-iproc.c 
> > b/drivers/pci/controller/pcie-iproc.c
> > index b882255..080f142 100644
> > --- a/drivers/pci/controller/pcie-iproc.c
> > +++ b/drivers/pci/controller/pcie-iproc.c
> > @@ -955,8 +955,25 @@ static int iproc_pcie_setup_ob(struct iproc_pcie 
> > *pcie, u64 axi_addr,
> >   resource_size_t window_size =
> >   ob_map->window_sizes[size_idx] * SZ_1M;
> >
> > - if (size < window_size)
> > - continue;
> > + /*
> > +  * Keep iterating until we reach the last window and
> > +  * with the minimal window size at index zero. In this
> > +  * case, we take a compromise by mapping it using the
> > +  * minimum window size that can be supported
> > +  */
> > + if (size < window_size) {
> > + if (size_idx > 0 || window_idx > 0)
> > + continue;
> > +
> > + /*
> > +  * For the corner case of reaching the minimal
> > +  * window size that can be supported on the
> > +  * last window
> > +  */
> > + axi_addr = ALIGN_DOWN(axi_addr, window_size);
> > + pci_addr = ALIGN_DOWN(pci_addr, window_size);
> > + size = window_size;
> > + }
> >
> >   if (!IS_ALIGNED(axi_addr, window_size) ||
> >   !IS_ALIGNED(pci_addr, window_size)) {
> > --
> > 2.7.4
> >


Re: [PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-03-29 Thread Lorenzo Pieralisi
On Fri, Mar 01, 2019 at 10:22:16AM +0530, Srinath Mannam wrote:
> In the present driver outbound window configuration is done to map above
> 32-bit address I/O regions with corresponding PCI memory range given in
> ranges DT property.
> 
> This patch add outbound window configuration to map below 32-bit I/O range
> with corresponding PCI memory, which helps to access I/O region in ARM
> 32-bit and one to one mapping of I/O region to PCI memory.
> 
> Ex:
> 1. ranges DT property given for current driver is,
> ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
> I/O region address is 0x4
> 2. ranges DT property can be given after this patch,
> ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
> I/O region address is 0x4200

I was applying this patch but I don't understand the commit log and
how it matches the code, please explain it to me and I will reword
it.

Thanks,
Lorenzo

> Signed-off-by: Srinath Mannam 
> Signed-off-by: Abhishek Shah 
> Signed-off-by: Ray Jui 
> ---
>  drivers/pci/controller/pcie-iproc.c | 21 +++--
>  1 file changed, 19 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/pci/controller/pcie-iproc.c 
> b/drivers/pci/controller/pcie-iproc.c
> index b882255..080f142 100644
> --- a/drivers/pci/controller/pcie-iproc.c
> +++ b/drivers/pci/controller/pcie-iproc.c
> @@ -955,8 +955,25 @@ static int iproc_pcie_setup_ob(struct iproc_pcie *pcie, 
> u64 axi_addr,
>   resource_size_t window_size =
>   ob_map->window_sizes[size_idx] * SZ_1M;
>  
> - if (size < window_size)
> - continue;
> + /*
> +  * Keep iterating until we reach the last window and
> +  * with the minimal window size at index zero. In this
> +  * case, we take a compromise by mapping it using the
> +  * minimum window size that can be supported
> +  */
> + if (size < window_size) {
> + if (size_idx > 0 || window_idx > 0)
> + continue;
> +
> + /*
> +  * For the corner case of reaching the minimal
> +  * window size that can be supported on the
> +  * last window
> +  */
> + axi_addr = ALIGN_DOWN(axi_addr, window_size);
> + pci_addr = ALIGN_DOWN(pci_addr, window_size);
> + size = window_size;
> + }
>  
>   if (!IS_ALIGNED(axi_addr, window_size) ||
>   !IS_ALIGNED(pci_addr, window_size)) {
> -- 
> 2.7.4
> 


[PATCH v4 2/2] PCI: iproc: Add outbound configuration for 32-bit I/O region

2019-02-28 Thread Srinath Mannam
In the present driver outbound window configuration is done to map above
32-bit address I/O regions with corresponding PCI memory range given in
ranges DT property.

This patch add outbound window configuration to map below 32-bit I/O range
with corresponding PCI memory, which helps to access I/O region in ARM
32-bit and one to one mapping of I/O region to PCI memory.

Ex:
1. ranges DT property given for current driver is,
ranges = <0x8300 0x0 0x4000 0x4 0x 0 0x4000>;
I/O region address is 0x4
2. ranges DT property can be given after this patch,
ranges = <0x8300 0x0 0x4200 0x0 0x4200 0 0x200>;
I/O region address is 0x4200

Signed-off-by: Srinath Mannam 
Signed-off-by: Abhishek Shah 
Signed-off-by: Ray Jui 
---
 drivers/pci/controller/pcie-iproc.c | 21 +++--
 1 file changed, 19 insertions(+), 2 deletions(-)

diff --git a/drivers/pci/controller/pcie-iproc.c 
b/drivers/pci/controller/pcie-iproc.c
index b882255..080f142 100644
--- a/drivers/pci/controller/pcie-iproc.c
+++ b/drivers/pci/controller/pcie-iproc.c
@@ -955,8 +955,25 @@ static int iproc_pcie_setup_ob(struct iproc_pcie *pcie, 
u64 axi_addr,
resource_size_t window_size =
ob_map->window_sizes[size_idx] * SZ_1M;
 
-   if (size < window_size)
-   continue;
+   /*
+* Keep iterating until we reach the last window and
+* with the minimal window size at index zero. In this
+* case, we take a compromise by mapping it using the
+* minimum window size that can be supported
+*/
+   if (size < window_size) {
+   if (size_idx > 0 || window_idx > 0)
+   continue;
+
+   /*
+* For the corner case of reaching the minimal
+* window size that can be supported on the
+* last window
+*/
+   axi_addr = ALIGN_DOWN(axi_addr, window_size);
+   pci_addr = ALIGN_DOWN(pci_addr, window_size);
+   size = window_size;
+   }
 
if (!IS_ALIGNED(axi_addr, window_size) ||
!IS_ALIGNED(pci_addr, window_size)) {
-- 
2.7.4