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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 20 May 2014 08:18:16 +0900 (JST)
From:	Thomas Gleixner <tglx@...utronix.de>
To:	Stefan Kristiansson <stefan.kristiansson@...nalahti.fi>
cc:	LKML <linux-kernel@...r.kernel.org>, linux@...ts.openrisc.net,
	jonas@...thpole.se, Jason Cooper <jason@...edaemon.net>
Subject: Re: [PATCH v2] openrisc: irq: use irqchip framework

On Mon, 19 May 2014, Stefan Kristiansson wrote:
> +static void or1k_pic_ack(struct irq_data *data)
> +{
> +	/* EDGE-triggered interrupts need to be ack'ed in order to clear
> +	 * the latch.
> +	 * LEVEL-triggered interrupts do not need to be ack'ed; however,
> +	 * ack'ing the interrupt has no ill-effect and is quicker than
> +	 * trying to figure out what type it is...
> +	 */

The right thing to do here is to have two interrupt chips. One for
level and one for ack. So you do not need a runtime check and you
avoid the ack for the level type.

> +	/* The OpenRISC 1000 spec says to write a 1 to the bit to ack the
> +	 * interrupt, but the OR1200 does this backwards and requires a 0
> +	 * to be written...
> +	 */
> +
> +#ifdef CONFIG_OR1K_1200
> +	/* There are two oddities with the OR1200 PIC implementation:
> +	 * i)  LEVEL-triggered interrupts are latched and need to be cleared
> +	 * ii) the interrupt latch is cleared by writing a 0 to the bit,
> +	 *     as opposed to a 1 as mandated by the spec
> +	 */
> +
> +	mtspr(SPR_PICSR, mfspr(SPR_PICSR) & ~(1UL << data->hwirq));
> +#else
> +	mtspr(SPR_PICSR, (1UL << data->hwirq));
> +#endif

Again, you could set the write 1/0 variant at runtime.

> +static int or1k_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hw)
> +{
> +	irq_set_chip_and_handler_name(irq, &or1k_dev,
> +				      handle_level_irq, "level");

It's wrong to use the level flow handler for edge type interrupts as
you might lose edges.

Thanks,

	tglx
--
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