* [PATCH 2.6.19 3/3] sata_promise: cleanups
@ 2006-12-01 9:59 Mikael Pettersson
2006-12-03 13:05 ` Tejun Heo
2006-12-03 13:07 ` Jeff Garzik
0 siblings, 2 replies; 4+ messages in thread
From: Mikael Pettersson @ 2006-12-01 9:59 UTC (permalink / raw)
To: Jeff Garzik; +Cc: linux-ide, linux-kernel
This patch performs two simple cleanups of sata_promise.
* Remove board_20771 and map device id 0x3577 to board_2057x.
After the recent corrections for SATAII chips, board_20771 and
board_2057x were equivalent in the driver.
* Remove hp->hotplug_offset and use hp->flags & PDC_FLAG_GEN_II
to compute hotplug_offset in pdc_host_init().
This patch depends on the sata_promise SATAII updates
patch I sent recently.
Signed-off-by: Mikael Pettersson <mikpe@it.uu.se>
diff -rupN linux-2.6.19.sata_promise-3-new_EH/drivers/ata/sata_promise.c linux-2.6.19.sata_promise-4-cleanups/drivers/ata/sata_promise.c
--- linux-2.6.19.sata_promise-3-new_EH/drivers/ata/sata_promise.c 2006-11-30 23:56:32.000000000 +0100
+++ linux-2.6.19.sata_promise-4-cleanups/drivers/ata/sata_promise.c 2006-12-01 00:16:09.000000000 +0100
@@ -67,9 +67,8 @@ enum {
board_2037x = 0, /* FastTrak S150 TX2plus */
board_20319 = 1, /* FastTrak S150 TX4 */
board_20619 = 2, /* FastTrak TX4000 */
- board_20771 = 3, /* FastTrak TX2300 */
- board_2057x = 4, /* SATAII150 Tx2plus */
- board_40518 = 5, /* SATAII150 Tx4 */
+ board_2057x = 3, /* SATAII150 Tx2plus */
+ board_40518 = 4, /* SATAII150 Tx4 */
PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
@@ -94,7 +93,6 @@ struct pdc_port_priv {
struct pdc_host_priv {
unsigned long flags;
- int hotplug_offset;
};
static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
@@ -213,16 +211,6 @@ static const struct ata_port_info pdc_po
.port_ops = &pdc_pata_ops,
},
- /* board_20771 */
- {
- .sht = &pdc_ata_sht,
- .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
- .pio_mask = 0x1f, /* pio0-4 */
- .mwdma_mask = 0x07, /* mwdma0-2 */
- .udma_mask = 0x7f, /* udma0-6 ; FIXME */
- .port_ops = &pdc_sata_ops,
- },
-
/* board_2057x */
{
.sht = &pdc_ata_sht,
@@ -252,6 +240,7 @@ static const struct pci_device_id pdc_at
{ PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
{ PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
{ PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
+ { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
{ PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
{ PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
@@ -264,15 +253,6 @@ static const struct pci_device_id pdc_at
{ PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
-/* TODO: remove all associated board_20771 code, as it completely
- * duplicates board_2037x code, unless reason for separation can be
- * divined.
- */
-#if 0
- { PCI_VDEVICE(PROMISE, 0x3570), board_20771 },
-#endif
- { PCI_VDEVICE(PROMISE, 0x3577), board_20771 },
-
{ } /* terminate list */
};
@@ -704,7 +684,7 @@ static void pdc_host_init(unsigned int c
{
void __iomem *mmio = pe->mmio_base;
struct pdc_host_priv *hp = pe->private_data;
- int hotplug_offset = hp->hotplug_offset;
+ int hotplug_offset = (hp->flags & PDC_FLAG_GEN_II) ? PDC2_SATA_PLUG_CSR : PDC_SATA_PLUG_CSR;
u32 tmp;
/*
@@ -801,8 +781,6 @@ static int pdc_ata_init_one (struct pci_
goto err_out_free_ent;
}
- /* Set default hotplug offset */
- hp->hotplug_offset = PDC_SATA_PLUG_CSR;
probe_ent->private_data = hp;
probe_ent->sht = pdc_port_info[board_idx].sht;
@@ -826,8 +804,6 @@ static int pdc_ata_init_one (struct pci_
switch (board_idx) {
case board_40518:
hp->flags |= PDC_FLAG_GEN_II;
- /* Override hotplug offset for SATAII150 */
- hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
/* Fall through */
case board_20319:
probe_ent->n_ports = 4;
@@ -839,10 +815,7 @@ static int pdc_ata_init_one (struct pci_
probe_ent->port[3].scr_addr = base + 0x700;
break;
case board_2057x:
- case board_20771:
hp->flags |= PDC_FLAG_GEN_II;
- /* Override hotplug offset for SATAII150 */
- hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
/* Fall through */
case board_2037x:
probe_ent->n_ports = 2;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2.6.19 3/3] sata_promise: cleanups
2006-12-01 9:59 [PATCH 2.6.19 3/3] sata_promise: cleanups Mikael Pettersson
@ 2006-12-03 13:05 ` Tejun Heo
2006-12-03 13:07 ` Jeff Garzik
1 sibling, 0 replies; 4+ messages in thread
From: Tejun Heo @ 2006-12-03 13:05 UTC (permalink / raw)
To: Mikael Pettersson; +Cc: Jeff Garzik, linux-ide, linux-kernel
Mikael Pettersson wrote:
> This patch performs two simple cleanups of sata_promise.
>
> * Remove board_20771 and map device id 0x3577 to board_2057x.
> After the recent corrections for SATAII chips, board_20771 and
> board_2057x were equivalent in the driver.
Ack.
> * Remove hp->hotplug_offset and use hp->flags & PDC_FLAG_GEN_II
> to compute hotplug_offset in pdc_host_init().
Please explain why.
> @@ -704,7 +684,7 @@ static void pdc_host_init(unsigned int c
> {
> void __iomem *mmio = pe->mmio_base;
> struct pdc_host_priv *hp = pe->private_data;
> - int hotplug_offset = hp->hotplug_offset;
> + int hotplug_offset = (hp->flags & PDC_FLAG_GEN_II) ? PDC2_SATA_PLUG_CSR : PDC_SATA_PLUG_CSR;
People tend to prefer explicit if () over ?: and dislike lines much
longer than 80 column, well, at least in libata.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2.6.19 3/3] sata_promise: cleanups
2006-12-01 9:59 [PATCH 2.6.19 3/3] sata_promise: cleanups Mikael Pettersson
2006-12-03 13:05 ` Tejun Heo
@ 2006-12-03 13:07 ` Jeff Garzik
1 sibling, 0 replies; 4+ messages in thread
From: Jeff Garzik @ 2006-12-03 13:07 UTC (permalink / raw)
To: Mikael Pettersson; +Cc: linux-ide, linux-kernel
Mikael Pettersson wrote:
> This patch performs two simple cleanups of sata_promise.
>
> * Remove board_20771 and map device id 0x3577 to board_2057x.
> After the recent corrections for SATAII chips, board_20771 and
> board_2057x were equivalent in the driver.
>
> * Remove hp->hotplug_offset and use hp->flags & PDC_FLAG_GEN_II
> to compute hotplug_offset in pdc_host_init().
>
> This patch depends on the sata_promise SATAII updates
> patch I sent recently.
>
> Signed-off-by: Mikael Pettersson <mikpe@it.uu.se>
ACK, but not applied:
patch #2 (presumably this patches depends on it) probably needs revision
(see Tejun's comments).
feel free to resend this patch against #upstream, while revising patch #2
Jeff
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2.6.19 3/3] sata_promise: cleanups
@ 2006-12-06 8:51 Mikael Pettersson
0 siblings, 0 replies; 4+ messages in thread
From: Mikael Pettersson @ 2006-12-06 8:51 UTC (permalink / raw)
To: htejun, mikpe; +Cc: jeff, linux-ide, linux-kernel
On Sun, 03 Dec 2006 22:05:51 +0900, Tejun Heo wrote:
>Mikael Pettersson wrote:
>> This patch performs two simple cleanups of sata_promise.
>>
>> * Remove board_20771 and map device id 0x3577 to board_2057x.
>> After the recent corrections for SATAII chips, board_20771 and
>> board_2057x were equivalent in the driver.
>
>Ack.
>
>> * Remove hp->hotplug_offset and use hp->flags & PDC_FLAG_GEN_II
>> to compute hotplug_offset in pdc_host_init().
>
>Please explain why.
hp->hotplug_offset was used to allow pdc_host_init() to work for both
1st and 2nd generation chips. However, more tests were needed to
properly handle other aspects of 2nd generation chips, so hp->flags
and PDC_FLAG_GEN_II were introduced. Now hp->hotplug_offset is redundant
since its value is derivable from hp->flags & PDC_FLAG_GEN_II.
>
>> @@ -704,7 +684,7 @@ static void pdc_host_init(unsigned int c
>> {
>> void __iomem *mmio = pe->mmio_base;
>> struct pdc_host_priv *hp = pe->private_data;
>> - int hotplug_offset = hp->hotplug_offset;
>> + int hotplug_offset = (hp->flags & PDC_FLAG_GEN_II) ? PDC2_SATA_PLUG_CSR : PDC_SATA_PLUG_CSR;
>
>People tend to prefer explicit if () over ?: and dislike lines much
>longer than 80 column, well, at least in libata.
OK, I'll replace the ?: with an if-statement.
/Mikael
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-12-06 8:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-01 9:59 [PATCH 2.6.19 3/3] sata_promise: cleanups Mikael Pettersson
2006-12-03 13:05 ` Tejun Heo
2006-12-03 13:07 ` Jeff Garzik
-- strict thread matches above, loose matches on Subject: below --
2006-12-06 8:51 Mikael Pettersson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox