linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* Can't load module spi_mpc83xx : No such device
@ 2009-02-27  4:56 Dushara Jayasinghe
  2009-02-27 12:54 ` Anton Vorontsov
  0 siblings, 1 reply; 9+ messages in thread
From: Dushara Jayasinghe @ 2009-02-27  4:56 UTC (permalink / raw)
  To: linuxppc-dev@ozlabs.org

Hi all,

I'm using linux version 2.6.29-rc5.

I've compiled the SPI diver (spi_mpc83xx.c) as a module, but it fails the l=
oad with a "No such device" error.

I've managed to track it down to platform_driver_probe() in drivers/base/pl=
atform.c=20
which returns -ENODEV because a device list is empty.

Not sure what I'm doing wrong.=20

Part of my device tree is as follows:

	soc8349@e0000000 {
		...
		spi@7000 {
			#address-cells =3D <1>;
			#size-cells =3D <0>;
			compatible =3D "fsl,spi";
			reg =3D <0x7000 0x1000>;
			interrupts =3D <0x10 0x8>;
			interrupt-parent =3D < &ipic >;

			m25p40@2 {
				compatible =3D "m25p80";
				spi-max-frequency =3D <25000000>;
				reg =3D <2>;
			};
		};
		...
	};

Thanks
D

^ permalink raw reply	[flat|nested] 9+ messages in thread
* RE: mpc8349e-mitx 2.6.25 serial IRQ assigned wrong
@ 2009-03-04  5:39 Steve DeLaney
  2009-03-04 13:00 ` Michael Ellerman
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Steve DeLaney @ 2009-03-04  5:39 UTC (permalink / raw)
  To: linuxppc-dev

 

Here's an update on this issue.  

After verifying the device tree was OK, the OF traces led us to the root
cause.

powerpc irq.c irq_alloc_virt() assigns a virtual IRQ as a function of the
input hardware IRQ hint, AND NUM_ISA_INTERRUPTS.  it turns out that
asm-ppc/irq.h defines NUM_ISA_INTERRUPTS 16, so that the allocated virq
is offset by this amount.  this accounts for the remap shown below for 
i2c and serial device vectors.

I didn't realize before that /proc/interrupts 
serviced by irq.c show_interrupts() displays virtual vector numbers.

For the mpc8349e-mitx this must be incorrect since there is no ISA?
Essentially all that is needed is a 1:1 mapping hirq:virq since
each interrupt source in the system appears to have a unique vector
in the SOC IPIC.  It seems this scheme is needlessly complex, at least for
mpc8349e.

For now we simply define irq.h NUM_ISA_INTERRUPTS 0
but this isn't a complete solution since our PCI device
interrupt on hirq 20, ends up allocated on virq 1.  To force
this to work, the driver does an irq_create_mapping(NULL, 20),
then assigns its own dev->irq=20 before calling request_irq()

I'm sure someone has a more elegant solution but that's what
we've been able to come up with so far.

/steverino2

-----Original Message-----
From: Steve DeLaney [mailto:onramp123@yahoo.com] 
Sent: Saturday, February 28, 2009 8:08 AM
To: 'linuxppc-dev@ozlabs.org'
Subject: mpc8349e-mitx 2.6.25 serial IRQ assigned wrong

 
Hello all,

We completed a 2.6.25 build for MPC8349E-mITX platform, and u-booting using
the device tree under ...boot/dts/mpc8349emitx.dts

But the standard platform device IRQs are assigned wrong under
/proc/interrupts:
16 i2c-mpc
17 i2c-mpc
20 serial

According to the device tree, and the processor data sheet, it should be
like this:
9 serial
14 i2c-mpc
15 i2c-mpc

earlier builds (pre-dating device tree) of 2.6.13 and 2.6.16 are OK.
The IRQs are assigned correctly, with serial on 9.

Oddly enough the serial port works OK even though it is assigned to IRQ 20.
We could probably live with it, but this interferes with our application
that uses PCI.
On MPC8349E-mITX, PIC IRQ 20 is intended for PCI INTA that is input to the
MPC8349E processor on IRQ4* signal.

We turned on debug output in irq.c and prom_parse.c Any idea what might be
going wrong?  We would appreciate any suggestions on what to look for.

/steverino2

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2009-03-04 23:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-27  4:56 Can't load module spi_mpc83xx : No such device Dushara Jayasinghe
2009-02-27 12:54 ` Anton Vorontsov
2009-02-28 16:07   ` mpc8349e-mitx 2.6.25 serial IRQ assigned wrong Steve DeLaney
2009-03-03  4:11   ` Can't load module spi_mpc83xx : No such device Dushara Jayasinghe
2009-03-03 12:41     ` Anton Vorontsov
  -- strict thread matches above, loose matches on Subject: below --
2009-03-04  5:39 mpc8349e-mitx 2.6.25 serial IRQ assigned wrong Steve DeLaney
2009-03-04 13:00 ` Michael Ellerman
2009-03-04 22:21 ` Timur Tabi
2009-03-04 23:08 ` Grant Likely

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).