devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sekhar Nori <nsekhar@ti.com>
To: Santosh Shilimkar <santosh.shilimkar@ti.com>
Cc: Sricharan R <r.sricharan@ti.com>, Rajendra Nayak <rnayak@ti.com>,
	Nishanth Menon <nm@ti.com>,
	Russell King - ARM Linux <linux@arm.linux.org.uk>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	Tony Lindgren <tony@atomide.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Felipe Balbi <balbi@ti.com>,
	Grant Likely <grant.likely@secretlab.ca>,
	Thomas Gleixner <tglx@linutronix.de>,
	Linux-OMAP <linux-omap@vger.kernel.org>,
	"devicetree-discuss@lists.ozlabs.org"
	<devicetree-discuss@lists.ozlabs.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 1/3] misc: Add crossbar driver
Date: Fri, 23 Aug 2013 21:58:08 +0530	[thread overview]
Message-ID: <52178D98.8020202@ti.com> (raw)
In-Reply-To: <521765DC.2000609@ti.com>

On 8/23/2013 7:08 PM, Santosh Shilimkar wrote:
> On Friday 23 August 2013 04:14 AM, Sekhar Nori wrote:
>> On Friday 23 August 2013 12:23 PM, Sricharan R wrote:
>>> On Friday 23 August 2013 12:06 PM, Sekhar Nori wrote:
>>>> On Friday 23 August 2013 11:41 AM, Sricharan R wrote:
>>>>> Hi,
>>>>> On Friday 23 August 2013 10:17 AM, Rajendra Nayak wrote:
>>>>>> On Thursday 22 August 2013 05:03 PM, Sricharan R wrote:
>>>>>>>  maps crossbar number<->  to interrupt number and
>>>>>>>  calls request_irq(int_no, crossbar_handler,..)
>>>>>> So will this mapping happen based on some data passed from DT or
>>>>>> just based on whats available when the device does a request_irq()?
>>>>>>
>>>>>> If its based on whats available then I see an issue when you need
>>>>>> to remap something thats already mapped by default (and not used)
>>>>>> since you run out of all free ones.
>>>>> Yes, when done based on what is available then there is a
>>>>> problem when we run out of free ones because we do not
>>>>> know which one to replace. I was thinking of something like
>>>>> this,
>>>>>     1) DT would give a list of all free ones, and also if some are
>>>>>         mapped as default and not used, mark those also as free.
>>>>>
>>>>>      2) While mapping see if it has a default mapping and use it.
>>>>>           otherwise, pick from free list.   
>>>> Since the entire DT is available to you at boot time, you should be able
>>>> to find each node where interrupt-parent = <&crossbar> and then allocate
>>>> one of 0-160 GIC interrupt numbers for that node, no? Where would there
>>>> be a need for default mapping and remapping? From one the mails in the
>>>> thread the crossbar is completely flexible - any of the 320 crossbar
>>>> interrupts can be mapped to any of the 160 GIC interrupts.
>>>>
>>>> Any GIC interrupts left after this boot-time scan can be added to an
>>>> unused list for use with runtime DT fragments (when that support comes).
>>>>  
>>>> Sorry if I misunderstood, but above proposal sounds like maintaining a
>>>> separate free interrupt lines list in DT. That will quickly go out of sync.
>>>  Say, peripheral x uses crossbar 1 and specifies this in DT.
>>>  During boot crossbar 1 gets mapped int 10. So if by default
>>> some other crossbar has its interrupt mapped to 10,
>>> then it should be removed.  Instead clear all crossbar registers
>>> once and mark all as free, then  allocate only during request.
>>> Correct ?. In this the free no need to maintain any list.
>>
>> Right, so in my suggestion there is nothing like a "default mapping" and
>> entire 160 GIC interrupt number space is up for grabs. I think this will
>> be much simpler to write and maintain.
>>
>> If you really want to maintain default mapping as far as possible, you
>> can do two passes on the crossbar interrupt numbers requested. Once to
>> assign the default map - for numbers less that 160 - and then look at
>> the free GIC interrupt slots and use those for numbers greater than 160.
>>
> The whole point we are moving to domain is not have any default
> mapping(connection done) at DT level. Rather DT only specifies the
> peripherals and their cross-bar connection ID(i.e cross-bar IRQ line).
> This will be the driver input as a IRQ line from DT. The cross-bar
> driver needs to map any of the free list available on *request* only.

Right, the mapping can be done on request. That will be cleaner.

Thanks,
Sekhar

  reply	other threads:[~2013-08-23 16:28 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-18 16:43 [PATCH 0/3] Add crossbar driver Sricharan R
2013-07-18 16:43 ` [PATCH 1/3] misc: " Sricharan R
2013-07-18 16:55   ` Joe Perches
2013-07-18 18:25   ` Felipe Balbi
2013-07-21 16:33     ` Linus Walleij
2013-07-18 18:56   ` Nishanth Menon
2013-07-18 23:39     ` Santosh Shilimkar
     [not found]       ` <51E87C98.5030001-l0cyMroinI0@public.gmane.org>
2013-07-19  0:13         ` Nishanth Menon
2013-07-19 10:48           ` Sricharan R
2013-07-19  7:17       ` Tony Lindgren
2013-07-19 10:48         ` Sricharan R
     [not found]     ` <51E83A4F.5080904-l0cyMroinI0@public.gmane.org>
2013-07-21 16:49       ` Linus Walleij
2013-07-22 12:20         ` Sricharan R
2013-07-22 16:23           ` Santosh Shilimkar
2013-07-24 16:08             ` Nishanth Menon
2013-07-24 16:38               ` Santosh Shilimkar
2013-07-24 16:47                 ` Nishanth Menon
2013-07-24 18:43                   ` Sricharan R
2013-07-24 18:51                     ` Nishanth Menon
2013-07-24 18:59                       ` Santosh Shilimkar
2013-08-13  8:10                         ` Tony Lindgren
2013-08-13  9:56                           ` Sricharan R
2013-08-13 13:29                             ` Santosh Shilimkar
2013-08-15 20:01                             ` Linus Walleij
2013-08-15 20:26                               ` Santosh Shilimkar
2013-08-15 20:51                                 ` Linus Walleij
2013-08-15 21:14                                   ` Santosh Shilimkar
2013-08-21 21:10                                     ` Linus Walleij
2013-08-22 11:33                                       ` Sricharan R
2013-08-22 13:45                                         ` Santosh Shilimkar
2013-08-23  4:47                                         ` Rajendra Nayak
2013-08-23  6:11                                           ` Sricharan R
2013-08-23  6:17                                             ` Rajendra Nayak
2013-08-23  6:36                                             ` Sekhar Nori
2013-08-23  6:53                                               ` Sricharan R
2013-08-23  8:14                                                 ` Sekhar Nori
2013-08-23 13:38                                                   ` Santosh Shilimkar
2013-08-23 16:28                                                     ` Sekhar Nori [this message]
2013-08-23 19:06                                                       ` Linus Walleij
2013-08-23 19:44                                                         ` Santosh Shilimkar
2013-08-13 13:28                           ` Santosh Shilimkar
2013-08-14  7:27                             ` Tony Lindgren
2013-07-18 16:43 ` [PATCH 2/3] ARM: dts: DRA: Add crossbar device binding Sricharan R
2013-07-18 19:04   ` Nishanth Menon
2013-07-18 16:43 ` [PATCH 3/3] ARM: DRA7xx: Enable crossbar driver for the soc Sricharan R

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52178D98.8020202@ti.com \
    --to=nsekhar@ti.com \
    --cc=balbi@ti.com \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=grant.likely@secretlab.ca \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=nm@ti.com \
    --cc=r.sricharan@ti.com \
    --cc=rnayak@ti.com \
    --cc=santosh.shilimkar@ti.com \
    --cc=tglx@linutronix.de \
    --cc=tony@atomide.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).