Re: [U-Boot] [RFC] setting pio modes for IDE devices

2008-08-15 Thread Wolfgang Denk
Dear Steven A. Falco, In message [EMAIL PROTECTED] you wrote: I realized that I should be checking to see if word 163 is applicable to the ATA device in question. To do that, I need to call ata_id_is_cfa() from libata.h. However, libata.h conflicts with ata.h because of duplicate enum

Re: [U-Boot] [RFC] setting pio modes for IDE devices

2008-08-14 Thread Steven A. Falco
Wolfgang Denk wrote: Dear Steven A. Falco, In message [EMAIL PROTECTED] you wrote: The following patch adds the ability to call-out from the ide_ident routine to a board-specific routine to set the PIO mode of an attached device. This feature is controlled by the preprocessor variable

[U-Boot] [RFC] setting pio modes for IDE devices

2008-08-13 Thread Steven A. Falco
The following patch adds the ability to call-out from the ide_ident routine to a board-specific routine to set the PIO mode of an attached device. This feature is controlled by the preprocessor variable CONFIG_TUNE_CFA. cmd_ide.c is modified to use the drive identify information read from the

Re: [U-Boot] [RFC] setting pio modes for IDE devices

2008-08-13 Thread Wolfgang Denk
Dear Steven A. Falco, In message [EMAIL PROTECTED] you wrote: The following patch adds the ability to call-out from the ide_ident routine to a board-specific routine to set the PIO mode of an attached device. This feature is controlled by the preprocessor variable CONFIG_TUNE_CFA. What