From mboxrd@z Thu Jan 1 00:00:00 1970 Message-Id: From: Ben Calvert To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> In-Reply-To: <39ae4c67f9fefb525fff948739f45a7d@quanstro.net> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v930.3) Date: Wed, 24 Dec 2008 00:19:35 -0800 References: <39ae4c67f9fefb525fff948739f45a7d@quanstro.net> Subject: Re: [9fans] sata working on cd kernel, but not after install? Topicbox-Message-UUID: 6ecf718c-ead4-11e9-9d60-3106f5b1d025 On Dec 21, 2008, at 12:42 PM, erik quanstrom wrote: > geoff has probablly fixed things for you today. this line from > sdata.c > added recently should support your nvidia controller > case (0x00E3<<16)|0x10DE: /* nVidia nForce2 250 SATA */ > thanks, geoff. the following diff enables dma on this controller and has yet to blow anything up. /n/sources/plan9/sys/src/9/pc/sdata.c:1939,1944 - /sys/src/9/pc/ sdata.c:1939,1947 */ break; case (0x7441<<16)|0x1022: /* AMD 768 */ + + /* testing!!!!!*/ + case (0x00E3<<16)|0x10DE: /* nVidia nForce2 250 SATA */ /* * Set: * 0x41 prefetch, postwrite; /n/sources/plan9/sys/src/9/pc/sdata.c:1966,1973 - /sys/src/9/pc/ sdata.c:1969,1975 case (0x209A<<16)|0x1022: /* AMD CS5536 */ case (0x01BC<<16)|0x10DE: /* nVidia nForce1 */ case (0x0065<<16)|0x10DE: /* nVidia nForce2 */ - case (0x0085<<16)|0x10DE: /* nVidia nForce2 MCP */ - case (0x00E3<<16)|0x10DE: /* nVidia nForce2 250 SATA */ + case (0x0085<<16)|0x10DE: /* nVidia nForce2 MCP */ case (0x00D5<<16)|0x10DE: /* nVidia nForce3 */ case (0x00E5<<16)|0x10DE: /* nVidia nForce3 Pro */ case (0x00EE<<16)|0x10DE: /* nVidia nForce3 250 SATA */ thanks eric, geoff Ben > > - erik >