Re: [proaudio] rtirq borked |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/proaudio Archives
]
- To: proaudio@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [proaudio] rtirq borked
- From: Dominique Michel <dominique.michel@xxxxxxxxxxxx>
- Date: Tue, 19 Sep 2006 13:08:20 +0200
- Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAJFBMVEXy8ubtkoXo7+b1+fbN cGKCeWDtamweFA8eMkmKPkPtvcWRoqyV0Pn7AAACbElEQVQ4jXXTMWvbQBQA4MOlizsdXEXp KAi09mKcLZ0EJxONDRJVkikg9AtqTm63gtHDmVJs1GsnC0JiaTMJGN2f67uzznJb+gZj9PFO 7717IqdtvCAmem4bxMLp/2BEyEBF1+U/0H8uhI6rv+BVLNrY/gH9T0L8yAxk2yMY3YuZxDCn TY/gpBByyTGktIcZOIvFjPNJmqYJDwrx3cIoBrE0zzG4FF8tfBAwM+DonKCYWjgROZ6Upjcm 5Qje58JAmlKKGfIAjzaDUuogZBY2Bjg14eDbywMIqZvwqgqFBcVFB0seYONLb00ZZlh4p0F6 FHNoUMyKAzxowJSQTyj+XloYs3MN3GeMpzyYSTMshLM00ODpWlPp4SDbqs4cViDcGAgmlK/a PsaOg7DvIQ3wzANMqB/iQW/XTkoTLO6XhSeHUoQKe+NLjyY/Ldx7CW2D4WTYhZ3V0GP64RpP Q/E66IUWMLj3+nDn4w2ejMACyXFeHZy6ETcZehc49bv1GQ/0bazNuzm97mDkhnoie9i30WYM w/YCnYT7Fx308s98n0IT//Jod1+aOzdzYXLVbftol+PC+REG3u+0AxdEtuSMB6G+DLGwMH4E vXGmJn8VCLM9LhmrOAMQYt5Wi/DFgIC52iFkUzMpDVmjAaDZRGC+JGwDqzJ/G5fUUcWZAaE7 YfvPLYtIU1Wb4A2IeS7uDMgcIFutiCr766qGfKHyuxvTIERKXVNSN27lDgCuBuojlpxIyJV6 ritS1uWWuHF2Ww7qcIKbqEFVNbmtmm3vGSCHbVXjikrY3SpVxwQWw2aIjwG+ueXTJDmHeK6a HfwGyU5ZSlGeSRQAAAAASUVORK5CYII=
Le Sun, 17 Sep 2006 16:02:08 +0000,
krgn <k.gebbert@xxxxxxxxx> a écrit :
>
> > So, you have to use the APIC IRQ interface, it will work better with shared
> > IRQs.
> >
>
> hm, how do you set that? sorry to be a pain in the bum :), but I really
> have no idea, and googleing around did not reveal a great deal to me.
>
>
> greetz, k
>
It is 2 different way to deal with the hardware IRQ. Both are implemented in
the hardware, and you must go in the bios in order to change it.
Be aware at a realtime kernel will work better if you have shared IRQ with the
APIC interfece. It is sometime easier to see those shared IRQ with the PIC
interface, because the hardware don't reassign the IRQs with this interface. If
you don't succed with the PIC interface, just use the APIC.
As I say in another post in this thread, the boot parameter acpi=off is a good
way to spare an IRQ (read /usr/src/linux/Documentation/kernel-parameters.txt).
Some Bios have a setting for this, but it will have no effect if you dont have
acpi=off in grub or lilo. The acpi control the power control features in your
box. It is mean to spare energy, but use an IRQ.
You can try it at boot time. Just select the kernel you want to boot at the
grub propmt, press "e", select the kernel line, press "e", and add
"acpi=off" (without the quotes), press return and "b".
After the boot (if it boot, I don't know with acpi=off and a laptop how it
will work), check /proc/interrupts to see what append. If something good
append, you can add it in /boot/grub/menu.lst, or even do 2 configs, one with
and one without this parameter.
Dominique