All of lore.kernel.org
 help / color / mirror / Atom feed
* IDE on Swarm
@ 2006-07-20 14:30 ` Gary Smith
  0 siblings, 0 replies; 6+ messages in thread
From: Gary Smith @ 2006-07-20 14:30 UTC (permalink / raw)
  To: linux-mips

[-- Attachment #1: Type: text/plain, Size: 1627 bytes --]

Hello All,

 

I'd like to ask a question regarding a post I noticed on a message board.
The post I read is as follows.

 

http://mail.bitmover.com/pipermail/sibyte-users/2004-November/000029.html

 

I am using a BCM91250A evaluation board with a compactflash device connected
to the onboard IDE controller.  When booting with a Linux 2.4.20 kernel, the
IDE interface is recognized and the compactflash device is hda.  When
booting with a Linux 2.6.16.25 kernel, the IDE interface is recognized, but
no device information is echoed to the console.  I've included output below.
The message post above mentions that there were problems with the IDE driver
in Linux 2.6 during the late 2004 time-frame.  I'd like to inquire about the
current availability of the IDE driver in the kernel.

 

 

Linux 2.4.20 Output:

 

Uniform Multi-Platform E-IDE driver Revision: 6.31

ide: Assuming 50MHz system bus speed for PIO modes; override with idebus=xx

SiByte onboard IDE configured as device 0

hda: SanDisk SDCFB-1024, ATA DISK drive

ide0 at 0xffffffffb00b3e01-0xffffffffb00b3e08,0xffffffffb00b7ec1 on irq 36

hda: 2001888 sectors (1025 MB) w/1KiB Cache, CHS=1986/16/63

Partition check:

 /dev/ide/host0/bus0/target0/lun0: p1

 

 

 

Linux 2.6.16.25 Output:

 

Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2

ide: Assuming 50MHz system bus speed for PIO modes; override with idebus=xx

ide-floppy driver 0.99.newide

SWARM IDE driver

ide-swarm: IDE interface at GenBus slot 4

NET: Registered protocol family 2

 

 

Thank you for your time.

 

Gary

--

Gary A. Smith, ABD PhD
Systems Engineer, 3Phoenix, Inc.


[-- Attachment #2: Type: text/html, Size: 9265 bytes --]

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

* IDE on Swarm
@ 2006-07-20 14:30 ` Gary Smith
  0 siblings, 0 replies; 6+ messages in thread
From: Gary Smith @ 2006-07-20 14:30 UTC (permalink / raw)
  To: linux-mips

[-- Attachment #1: Type: text/plain, Size: 1627 bytes --]

Hello All,

 

I'd like to ask a question regarding a post I noticed on a message board.
The post I read is as follows.

 

http://mail.bitmover.com/pipermail/sibyte-users/2004-November/000029.html

 

I am using a BCM91250A evaluation board with a compactflash device connected
to the onboard IDE controller.  When booting with a Linux 2.4.20 kernel, the
IDE interface is recognized and the compactflash device is hda.  When
booting with a Linux 2.6.16.25 kernel, the IDE interface is recognized, but
no device information is echoed to the console.  I've included output below.
The message post above mentions that there were problems with the IDE driver
in Linux 2.6 during the late 2004 time-frame.  I'd like to inquire about the
current availability of the IDE driver in the kernel.

 

 

Linux 2.4.20 Output:

 

Uniform Multi-Platform E-IDE driver Revision: 6.31

ide: Assuming 50MHz system bus speed for PIO modes; override with idebus=xx

SiByte onboard IDE configured as device 0

hda: SanDisk SDCFB-1024, ATA DISK drive

ide0 at 0xffffffffb00b3e01-0xffffffffb00b3e08,0xffffffffb00b7ec1 on irq 36

hda: 2001888 sectors (1025 MB) w/1KiB Cache, CHS=1986/16/63

Partition check:

 /dev/ide/host0/bus0/target0/lun0: p1

 

 

 

Linux 2.6.16.25 Output:

 

Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2

ide: Assuming 50MHz system bus speed for PIO modes; override with idebus=xx

ide-floppy driver 0.99.newide

SWARM IDE driver

ide-swarm: IDE interface at GenBus slot 4

NET: Registered protocol family 2

 

 

Thank you for your time.

 

Gary

--

Gary A. Smith, ABD PhD
Systems Engineer, 3Phoenix, Inc.


[-- Attachment #2: Type: text/html, Size: 9265 bytes --]

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

* Re: IDE on Swarm
  2006-07-20 14:30 ` Gary Smith
  (?)
@ 2006-07-20 15:32 ` Thiemo Seufer
  2006-07-20 15:36   ` Martin Michlmayr
  2006-07-20 15:53   ` Sergei Shtylyov
  -1 siblings, 2 replies; 6+ messages in thread
From: Thiemo Seufer @ 2006-07-20 15:32 UTC (permalink / raw)
  To: Gary Smith; +Cc: linux-mips

Gary Smith wrote:
[snip]
> I am using a BCM91250A evaluation board with a compactflash device connected
> to the onboard IDE controller.  When booting with a Linux 2.4.20 kernel, the
> IDE interface is recognized and the compactflash device is hda.  When
> booting with a Linux 2.6.16.25 kernel, the IDE interface is recognized, but
> no device information is echoed to the console.  I've included output below.
> The message post above mentions that there were problems with the IDE driver
> in Linux 2.6 during the late 2004 time-frame.  I'd like to inquire about the
> current availability of the IDE driver in the kernel.

The SWARM onboard IDE works for me with the appended patch. (Originally from
Peter Horton <pdh@colonel-panic.org>.)


Thiemo

--- a/drivers/ide/mips/swarm.c
+++ b/drivers/ide/mips/swarm.c
@@ -127,6 +127,7 @@ static int __devinit swarm_ide_probe(str
 	memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports));
 	hwif->irq = hwif->hw.irq;
 
+	probe_hwif_init(hwif);
 	dev_set_drvdata(dev, hwif);
 
 	return 0;

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

* Re: IDE on Swarm
  2006-07-20 15:32 ` Thiemo Seufer
@ 2006-07-20 15:36   ` Martin Michlmayr
  2006-07-20 15:55     ` Thiemo Seufer
  2006-07-20 15:53   ` Sergei Shtylyov
  1 sibling, 1 reply; 6+ messages in thread
From: Martin Michlmayr @ 2006-07-20 15:36 UTC (permalink / raw)
  To: Thiemo Seufer; +Cc: Gary Smith, linux-mips

* Thiemo Seufer <ths@networkno.de> [2006-07-20 16:32]:
> > in Linux 2.6 during the late 2004 time-frame.  I'd like to inquire about the
> > current availability of the IDE driver in the kernel.
> The SWARM onboard IDE works for me with the appended patch. (Originally from
> Peter Horton <pdh@colonel-panic.org>.)

I think the problem is that PCMCIA support was never ported to 2.6.
Peter 'p2' De Schrijver wanted to work on this but I've no idea what
the progress is.
-- 
Martin Michlmayr
http://www.cyrius.com/

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

* Re: IDE on Swarm
  2006-07-20 15:32 ` Thiemo Seufer
  2006-07-20 15:36   ` Martin Michlmayr
@ 2006-07-20 15:53   ` Sergei Shtylyov
  1 sibling, 0 replies; 6+ messages in thread
From: Sergei Shtylyov @ 2006-07-20 15:53 UTC (permalink / raw)
  To: Thiemo Seufer; +Cc: Gary Smith, linux-mips

Hello.

Thiemo Seufer wrote:

> The SWARM onboard IDE works for me with the appended patch. (Originally from
> Peter Horton <pdh@colonel-panic.org>.)

> Thiemo
> 
> --- a/drivers/ide/mips/swarm.c
> +++ b/drivers/ide/mips/swarm.c
> @@ -127,6 +127,7 @@ static int __devinit swarm_ide_probe(str
>  	memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports));
>  	hwif->irq = hwif->hw.irq;
>  
> +	probe_hwif_init(hwif);
>  	dev_set_drvdata(dev, hwif);
>  
>  	return 0;

    Has it been submitted anywhere?

WBR, Sergei

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

* Re: IDE on Swarm
  2006-07-20 15:36   ` Martin Michlmayr
@ 2006-07-20 15:55     ` Thiemo Seufer
  0 siblings, 0 replies; 6+ messages in thread
From: Thiemo Seufer @ 2006-07-20 15:55 UTC (permalink / raw)
  To: Martin Michlmayr; +Cc: Gary Smith, linux-mips

Martin Michlmayr wrote:
> * Thiemo Seufer <ths@networkno.de> [2006-07-20 16:32]:
> > > in Linux 2.6 during the late 2004 time-frame.  I'd like to inquire about the
> > > current availability of the IDE driver in the kernel.
> > The SWARM onboard IDE works for me with the appended patch. (Originally from
> > Peter Horton <pdh@colonel-panic.org>.)
> 
> I think the problem is that PCMCIA support was never ported to 2.6.
> Peter 'p2' De Schrijver wanted to work on this but I've no idea what
> the progress is.

AFAIU Gary used a Compact Flash connected to the onboard IDE, not a
CF -> PCMCIA Adapter.


Thiemo

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

end of thread, other threads:[~2006-07-20 15:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-20 14:30 IDE on Swarm Gary Smith
2006-07-20 14:30 ` Gary Smith
2006-07-20 15:32 ` Thiemo Seufer
2006-07-20 15:36   ` Martin Michlmayr
2006-07-20 15:55     ` Thiemo Seufer
2006-07-20 15:53   ` Sergei Shtylyov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.