lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Mon, 21 May 2012 13:55:15 +0900
From:	Paul Mundt <lethal@...ux-sh.org>
To:	Grant Likely <grant.likely@...retlab.ca>
Cc:	linux-sh@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 6/8] irqdomain: Support identity mapped VIRQ allocation.

On Sat, May 19, 2012 at 02:21:40PM -0600, Grant Likely wrote:
> On Sat, 19 May 2012 15:11:46 +0900, Paul Mundt <lethal@...ux-sh.org> wrote:
> > This adds a new irq_create_identity_mapping() routine to permit platforms
> > to utilize 1:1 identity mapping between hardware and linux IRQs for
> > domain population. The same semantics as irq_create_mapping() apply,
> > though in this case we only support irqdesc allocation at a static
> > location, rather than falling back on dynamic lookup.
> > 
> How about the following for an API (omitting error checking, and the
> actual names are up for debate):
> 
> int irq_domain_associate_many(struct irq_domain *domain,
> 				unsigned int irq_base,
> 				irq_hw_number_t hwirq_base,
> 				int count)
> {
> 	int i;
> 	for (i = 0; i < count; i++)
> 		irq_setup_virq(domain, irq_base + i, hwirq_base + i);
> }
> int irq_create_strict_mappings(struct irq_domain *domain,
> 				unsigned int irq_base,
> 				irq_hw_number_t hwirq_base,
> 				int count)
> {
> 	/* Allows for non-identity, but still static mappings of a
> 	 * range of irq numbers */
> 	irq_alloc_descs(irq_base, irq_base, irq_domain_nid(domain->of_node));
> 	irq_domain_associate_many(domain, irq_base, hwirq, count);
> 	...
> }
> 
> /* in header */
> static int irq_create_identity_mapping(struct irq_domain *domain,
> 					irq_hw_number_t hwirq_base)
> {
> 	irq_create_strict_mappings(domain, hwirq_base, hwirq_base, 1);
> }
> 
> That would give the ability to either associated for pre-allocated
> irq_descs, or strict map for allocating a specific range of irqs.
> 
That's cleaner than what I had, so it looks good to me. This is what I've
implemented in the updated patch.

I've still provided irq_domain_associate() in addition to the _many()
case to support non-linear association. I'll probably start out by doing
the sh intc conversion using this API alongside the radix tree, and then
gradually converting over to having the irqdomain code do all of my irq
desc management for me.

> This is a new API, and I'm not a fan of the irq_default_domain usage
> so I'd like just drop the above too lines.  My opinion is that if your
> calling into get a mapping, then the code really should know what
> domain it is requesting from.  If a default domain really is needed,
> then there it should be explicit for the caller to find the default
> domain and then pass that in to this function.
> 
Yes, agreed. Adding something like irq_get_default_domain() is trivial if
and when a need arises.

Updated patches to follow.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ