lkml.org 
[lkml]   [2003]   [Mar]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: Need help for pci driver on powerpc
From
Date
On Sun, 2003-03-23 at 18:30, Christian Jaeger wrote:
> Hello
>
> Somehow I can't access a PCI card on a PowerMac. I once wrote a
> driver for this card on MacOS8, but that does not seem to help me so
> far.
>
> It's a digital I/O card Computer Boards PCI-DIO96H showing this info
> in lspci -vvn:
>
> 00:0e.0 Class ffff: 1307:0017 (rev 02) (prog-if ff)
> Subsystem: 1307:0017
> Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Interrupt: pin A routed to IRQ 24
> Region 1: I/O ports at 0800 [disabled] [size=128]
> Region 2: I/O ports at 0880 [disabled] [size=16]
>
> This is what I am doing (irrelevant parts stripped):
> error= pci_enable_device(mydevicep);
> mybase1_phys= pci_resource_start(dev, 2);
> mybase1length= pci_resource_len(dev,2);
> // gives: address 0x00000880, len 16
> error = pci_request_regions (dev, NAME);
> pci_set_master (dev);
> mybase1= (unsigned long)ioremap(mybase1_phys,mybase1length);
> // gives: 0, while the following is printed to the kernel log:
> // __ioremap(): phys addr 0 is RAM lr c0010c34

According to lspci output, the resources for your card are of type
"IO", not "memory". You use ioremap only for the later.
If you are not sure about the resource type, look at the resource
flags.

So instead of using ioremap along with {read,write}{b,w,l} accessors,
use the output of pci_resource_start() directly with {in,out}{b,w,l}
(and eventually {in,out}s{w,l} for non-byteswapped "stream" access).

Ben.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:34    [W:0.056 / U:0.584 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site