1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * sata_uli.c - ULi Electronics SATA
5 * libata documentation is available via 'make {ps|pdf}docs',
6 * as Documentation/driver-api/libata.rst
8 * Hardware documentation available under NDA.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/gfp.h>
14 #include <linux/pci.h>
15 #include <linux/blkdev.h>
16 #include <linux/delay.h>
17 #include <linux/interrupt.h>
18 #include <linux/device.h>
19 #include <scsi/scsi_host.h>
20 #include <linux/libata.h>
22 #define DRV_NAME "sata_uli"
23 #define DRV_VERSION "1.3"
32 /* PCI configuration registers */
33 ULI5287_BASE
= 0x90, /* sata0 phy SCR registers */
34 ULI5287_OFFS
= 0x10, /* offset from sata0->sata1 phy regs */
35 ULI5281_BASE
= 0x60, /* sata0 phy SCR registers */
36 ULI5281_OFFS
= 0x60, /* offset from sata0->sata1 phy regs */
40 unsigned int scr_cfg_addr
[uli_max_ports
];
43 static int uli_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
);
44 static int uli_scr_read(struct ata_link
*link
, unsigned int sc_reg
, u32
*val
);
45 static int uli_scr_write(struct ata_link
*link
, unsigned int sc_reg
, u32 val
);
47 static const struct pci_device_id uli_pci_tbl
[] = {
48 { PCI_VDEVICE(AL
, 0x5289), uli_5289
},
49 { PCI_VDEVICE(AL
, 0x5287), uli_5287
},
50 { PCI_VDEVICE(AL
, 0x5281), uli_5281
},
52 { } /* terminate list */
55 static struct pci_driver uli_pci_driver
= {
57 .id_table
= uli_pci_tbl
,
58 .probe
= uli_init_one
,
59 .remove
= ata_pci_remove_one
,
62 static struct scsi_host_template uli_sht
= {
63 ATA_BMDMA_SHT(DRV_NAME
),
66 static struct ata_port_operations uli_ops
= {
67 .inherits
= &ata_bmdma_port_ops
,
68 .scr_read
= uli_scr_read
,
69 .scr_write
= uli_scr_write
,
70 .hardreset
= ATA_OP_NULL
,
73 static const struct ata_port_info uli_port_info
= {
74 .flags
= ATA_FLAG_SATA
| ATA_FLAG_IGN_SIMPLEX
,
76 .udma_mask
= ATA_UDMA6
,
81 MODULE_AUTHOR("Peer Chen");
82 MODULE_DESCRIPTION("low-level driver for ULi Electronics SATA controller");
83 MODULE_LICENSE("GPL");
84 MODULE_DEVICE_TABLE(pci
, uli_pci_tbl
);
85 MODULE_VERSION(DRV_VERSION
);
87 static unsigned int get_scr_cfg_addr(struct ata_port
*ap
, unsigned int sc_reg
)
89 struct uli_priv
*hpriv
= ap
->host
->private_data
;
90 return hpriv
->scr_cfg_addr
[ap
->port_no
] + (4 * sc_reg
);
93 static u32
uli_scr_cfg_read(struct ata_link
*link
, unsigned int sc_reg
)
95 struct pci_dev
*pdev
= to_pci_dev(link
->ap
->host
->dev
);
96 unsigned int cfg_addr
= get_scr_cfg_addr(link
->ap
, sc_reg
);
99 pci_read_config_dword(pdev
, cfg_addr
, &val
);
103 static void uli_scr_cfg_write(struct ata_link
*link
, unsigned int scr
, u32 val
)
105 struct pci_dev
*pdev
= to_pci_dev(link
->ap
->host
->dev
);
106 unsigned int cfg_addr
= get_scr_cfg_addr(link
->ap
, scr
);
108 pci_write_config_dword(pdev
, cfg_addr
, val
);
111 static int uli_scr_read(struct ata_link
*link
, unsigned int sc_reg
, u32
*val
)
113 if (sc_reg
> SCR_CONTROL
)
116 *val
= uli_scr_cfg_read(link
, sc_reg
);
120 static int uli_scr_write(struct ata_link
*link
, unsigned int sc_reg
, u32 val
)
122 if (sc_reg
> SCR_CONTROL
) //SCR_CONTROL=2, SCR_ERROR=1, SCR_STATUS=0
125 uli_scr_cfg_write(link
, sc_reg
, val
);
129 static int uli_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
131 const struct ata_port_info
*ppi
[] = { &uli_port_info
, NULL
};
132 unsigned int board_idx
= (unsigned int) ent
->driver_data
;
133 struct ata_host
*host
;
134 struct uli_priv
*hpriv
;
135 void __iomem
* const *iomap
;
136 struct ata_ioports
*ioaddr
;
139 ata_print_version_once(&pdev
->dev
, DRV_VERSION
);
141 rc
= pcim_enable_device(pdev
);
146 if (board_idx
== uli_5287
)
149 /* allocate the host */
150 host
= ata_host_alloc_pinfo(&pdev
->dev
, ppi
, n_ports
);
154 hpriv
= devm_kzalloc(&pdev
->dev
, sizeof(*hpriv
), GFP_KERNEL
);
157 host
->private_data
= hpriv
;
159 /* the first two ports are standard SFF */
160 rc
= ata_pci_sff_init_host(host
);
164 ata_pci_bmdma_init(host
);
170 /* If there are four, the last two live right after
171 * the standard SFF ports.
173 hpriv
->scr_cfg_addr
[0] = ULI5287_BASE
;
174 hpriv
->scr_cfg_addr
[1] = ULI5287_BASE
+ ULI5287_OFFS
;
176 ioaddr
= &host
->ports
[2]->ioaddr
;
177 ioaddr
->cmd_addr
= iomap
[0] + 8;
178 ioaddr
->altstatus_addr
=
179 ioaddr
->ctl_addr
= (void __iomem
*)
180 ((unsigned long)iomap
[1] | ATA_PCI_CTL_OFS
) + 4;
181 ioaddr
->bmdma_addr
= iomap
[4] + 16;
182 hpriv
->scr_cfg_addr
[2] = ULI5287_BASE
+ ULI5287_OFFS
*4;
183 ata_sff_std_ports(ioaddr
);
185 ata_port_desc(host
->ports
[2],
186 "cmd 0x%llx ctl 0x%llx bmdma 0x%llx",
187 (unsigned long long)pci_resource_start(pdev
, 0) + 8,
188 ((unsigned long long)pci_resource_start(pdev
, 1) | ATA_PCI_CTL_OFS
) + 4,
189 (unsigned long long)pci_resource_start(pdev
, 4) + 16);
191 ioaddr
= &host
->ports
[3]->ioaddr
;
192 ioaddr
->cmd_addr
= iomap
[2] + 8;
193 ioaddr
->altstatus_addr
=
194 ioaddr
->ctl_addr
= (void __iomem
*)
195 ((unsigned long)iomap
[3] | ATA_PCI_CTL_OFS
) + 4;
196 ioaddr
->bmdma_addr
= iomap
[4] + 24;
197 hpriv
->scr_cfg_addr
[3] = ULI5287_BASE
+ ULI5287_OFFS
*5;
198 ata_sff_std_ports(ioaddr
);
200 ata_port_desc(host
->ports
[2],
201 "cmd 0x%llx ctl 0x%llx bmdma 0x%llx",
202 (unsigned long long)pci_resource_start(pdev
, 2) + 9,
203 ((unsigned long long)pci_resource_start(pdev
, 3) | ATA_PCI_CTL_OFS
) + 4,
204 (unsigned long long)pci_resource_start(pdev
, 4) + 24);
209 hpriv
->scr_cfg_addr
[0] = ULI5287_BASE
;
210 hpriv
->scr_cfg_addr
[1] = ULI5287_BASE
+ ULI5287_OFFS
;
214 hpriv
->scr_cfg_addr
[0] = ULI5281_BASE
;
215 hpriv
->scr_cfg_addr
[1] = ULI5281_BASE
+ ULI5281_OFFS
;
223 pci_set_master(pdev
);
225 return ata_host_activate(host
, pdev
->irq
, ata_bmdma_interrupt
,
226 IRQF_SHARED
, &uli_sht
);
229 module_pci_driver(uli_pci_driver
);