Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
cc896f08
Commit
cc896f08
authored
Sep 07, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'upstream' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev
parents
87129d96
ca20aa69
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
856 additions
and
3 deletions
+856
-3
drivers/scsi/Kconfig
drivers/scsi/Kconfig
+9
-0
drivers/scsi/Makefile
drivers/scsi/Makefile
+1
-0
drivers/scsi/ahci.c
drivers/scsi/ahci.c
+1
-1
drivers/scsi/sata_mv.c
drivers/scsi/sata_mv.c
+843
-0
drivers/scsi/sata_uli.c
drivers/scsi/sata_uli.c
+2
-2
No files found.
drivers/scsi/Kconfig
View file @
cc896f08
...
...
@@ -459,6 +459,15 @@ config SCSI_ATA_PIIX
If
unsure
,
say
N
.
config
SCSI_SATA_MV
tristate
"Marvell SATA support"
depends
on
SCSI_SATA
&&
PCI
&&
EXPERIMENTAL
help
This
option
enables
support
for
the
Marvell
Serial
ATA
family
.
Currently
supports
88
SX
[
56
]
0
[
48
][
01
]
chips
.
If
unsure
,
say
N
.
config
SCSI_SATA_NV
tristate
"NVIDIA SATA support"
depends
on
SCSI_SATA
&&
PCI
&&
EXPERIMENTAL
...
...
drivers/scsi/Makefile
View file @
cc896f08
...
...
@@ -132,6 +132,7 @@ obj-$(CONFIG_SCSI_SATA_SIS) += libata.o sata_sis.o
obj-$(CONFIG_SCSI_SATA_SX4)
+=
libata.o sata_sx4.o
obj-$(CONFIG_SCSI_SATA_NV)
+=
libata.o sata_nv.o
obj-$(CONFIG_SCSI_SATA_ULI)
+=
libata.o sata_uli.o
obj-$(CONFIG_SCSI_SATA_MV)
+=
libata.o sata_mv.o
obj-$(CONFIG_ARM)
+=
arm/
...
...
drivers/scsi/ahci.c
View file @
cc896f08
...
...
@@ -250,7 +250,7 @@ static struct ata_port_info ahci_port_info[] = {
.
host_flags
=
ATA_FLAG_SATA
|
ATA_FLAG_NO_LEGACY
|
ATA_FLAG_SATA_RESET
|
ATA_FLAG_MMIO
|
ATA_FLAG_PIO_DMA
,
.
pio_mask
=
0x
03
,
/* pio3
-4 */
.
pio_mask
=
0x
1f
,
/* pio0
-4 */
.
udma_mask
=
0x7f
,
/* udma0-6 ; FIXME */
.
port_ops
=
&
ahci_ops
,
},
...
...
drivers/scsi/sata_mv.c
0 → 100644
View file @
cc896f08
This diff is collapsed.
Click to expand it.
drivers/scsi/sata_uli.c
View file @
cc896f08
...
...
@@ -125,8 +125,8 @@ static struct ata_port_info uli_port_info = {
.
sht
=
&
uli_sht
,
.
host_flags
=
ATA_FLAG_SATA
|
ATA_FLAG_SATA_RESET
|
ATA_FLAG_NO_LEGACY
,
.
pio_mask
=
0x
03
,
//support pio mode 4 (FIXME)
.
udma_mask
=
0x7f
,
/
/support udma mode 6
.
pio_mask
=
0x
1f
,
/* pio0-4 */
.
udma_mask
=
0x7f
,
/
* udma0-6 */
.
port_ops
=
&
uli_ops
,
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment