|
Revision 1658, 1.1 KB
(checked in by mds, 11 years ago)
|
|
compile fixes for i2c-amd8111.c, and add support in mkpatch.
Patch from
Vojtech Pavlik <vojtech@…>
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | Kernel driver `i2c-adm8111.o' |
|---|
| 2 | |
|---|
| 3 | Status: Slightly tested. |
|---|
| 4 | |
|---|
| 5 | Supported adapters: |
|---|
| 6 | * AMD-8111 SMBus 2.0 PCI interface |
|---|
| 7 | |
|---|
| 8 | Datasheets: |
|---|
| 9 | AMD datasheet not yet available, but almost everything can be found in |
|---|
| 10 | publically available ACPI 2.0 specification, which the adapter follows. |
|---|
| 11 | |
|---|
| 12 | Author: Vojtech Pavlik <vojtech@suse.cz> |
|---|
| 13 | |
|---|
| 14 | Module Parameters |
|---|
| 15 | ----------------- |
|---|
| 16 | |
|---|
| 17 | None. |
|---|
| 18 | |
|---|
| 19 | Description |
|---|
| 20 | ----------- |
|---|
| 21 | |
|---|
| 22 | If you see something like this: |
|---|
| 23 | |
|---|
| 24 | 00:07.2 SMBus: Advanced Micro Devices [AMD] AMD-8111 SMBus 2.0 (rev 02) |
|---|
| 25 | Subsystem: Advanced Micro Devices [AMD] AMD-8111 SMBus 2.0 |
|---|
| 26 | Flags: medium devsel, IRQ 19 |
|---|
| 27 | I/O ports at d400 [size=32] |
|---|
| 28 | |
|---|
| 29 | in your 'lspci -v', then this driver is for your chipset. |
|---|
| 30 | |
|---|
| 31 | Process Call Support |
|---|
| 32 | -------------------- |
|---|
| 33 | |
|---|
| 34 | Supported. |
|---|
| 35 | |
|---|
| 36 | SMBus 2.0 Support |
|---|
| 37 | ----------------- |
|---|
| 38 | |
|---|
| 39 | Supported. Both PEC and block process call support is implemented. |
|---|
| 40 | Slave mode or host notification are not yet implemented. |
|---|
| 41 | |
|---|
| 42 | Notes |
|---|
| 43 | ----- |
|---|
| 44 | |
|---|
| 45 | Note that for the 8111, there are two SMBus adapters. The SMBus 2.0 adapter is |
|---|
| 46 | supported by this driver, and the SMBus 1.0 adapter is supported |
|---|
| 47 | by the i2c-amd756 driver. |
|---|