linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] 86xx: Enable the AC97 interface on 8641D board.
@ 2007-05-02 21:53 Jon Loeliger
  2007-05-03 14:44 ` Kumar Gala
  2007-05-10  5:16 ` Kumar Gala
  0 siblings, 2 replies; 16+ messages in thread
From: Jon Loeliger @ 2007-05-02 21:53 UTC (permalink / raw)
  To: linuxppc-dev@ozlabs.org

From: Jason Jin <jason.jin@freescale.com>

HD interface and AC97 interface share some pins and they are enabled at
the same time, In order to use AC97 interface, we need to disable the HD
interface first.

Signed-off-by:Jason Jin<jason.jin@freescale.com>
Acked-by: Jon Loeliger <jdl@freescale.com>
---
 arch/powerpc/platforms/86xx/mpc86xx_hpcn.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
index 3d3d98f..13a14dd 100644
--- a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
+++ b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
@@ -168,7 +168,7 @@ static void __devinit quirk_uli1575(struct pci_dev *dev)
 {
 	unsigned short temp;
 	struct pci_controller *hose = pci_bus_to_host(dev->bus);
-	unsigned char irq2pin[16];
+	unsigned char irq2pin[16], c;
 	unsigned long pirq_map_word = 0;
 	u32 irq;
 	int i;
@@ -288,6 +288,11 @@ static void __devinit quirk_uli1575(struct pci_dev *dev)
 	outb(0x1e, 0x4d1);
 
 #undef ULI1575_SET_DEV_IRQ
+
+	/* Disable the HD interface and enable the AC97 interface. */
+	pci_read_config_byte(dev, 0xb8, &c);
+	c &= 0x7f;
+	pci_write_config_byte(dev, 0xb8, c);
 }
 
 static void __devinit quirk_uli5288(struct pci_dev *dev)
-- 
1.5.0.3

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

end of thread, other threads:[~2007-05-10 15:46 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-02 21:53 [PATCH] 86xx: Enable the AC97 interface on 8641D board Jon Loeliger
2007-05-03 14:44 ` Kumar Gala
2007-05-03 15:55   ` Jon Loeliger
2007-05-03 16:01     ` Kumar Gala
2007-05-03 16:03       ` Jon Loeliger
2007-05-03 16:10     ` Olof Johansson
2007-05-03 16:17       ` Jon Loeliger
2007-05-03 16:19         ` Kumar Gala
2007-05-03 17:28           ` Olof Johansson
2007-05-09 16:14           ` Jon Loeliger
2007-05-09 16:19             ` Kumar Gala
2007-05-03 17:26         ` Olof Johansson
2007-05-03 17:38           ` Scott Wood
2007-05-06 22:42         ` Matt Sealey
2007-05-10  5:16 ` Kumar Gala
2007-05-10 15:45   ` Jon Loeliger

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