Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) ========================
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) Kernel driver i2c-sis630
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) ========================
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) Supported adapters:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)   * Silicon Integrated Systems Corp (SiS)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 	630 chipset (Datasheet: available at http://www.sfr-fresh.com/linux)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 	730 chipset
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 	964 chipset
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10)   * Possible other SiS chipsets ?
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) Author:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13)         - Alexander Malysh <amalysh@web.de>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 	- Amaury Decrême <amaury.decreme@gmail.com> - SiS964 support
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) Module Parameters
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) -----------------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) ==================      =====================================================
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) force = [1|0]           Forcibly enable the SIS630. DANGEROUS!
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21)                         This can be interesting for chipsets not named
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22)                         above to check if it works for you chipset,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23)                         but DANGEROUS!
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) high_clock = [1|0]      Forcibly set Host Master Clock to 56KHz (default,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) 			what your BIOS use). DANGEROUS! This should be a bit
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) 			faster, but freeze some systems (i.e. my Laptop).
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) 			SIS630/730 chip only.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) ==================      =====================================================
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) Description
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) -----------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) This SMBus only driver is known to work on motherboards with the above
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) named chipsets.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) If you see something like this::
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40)   00:00.0 Host bridge: Silicon Integrated Systems [SiS] 630 Host (rev 31)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41)   00:01.0 ISA bridge: Silicon Integrated Systems [SiS] 85C503/5513
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43) or like this::
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45)   00:00.0 Host bridge: Silicon Integrated Systems [SiS] 730 Host (rev 02)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46)   00:01.0 ISA bridge: Silicon Integrated Systems [SiS] 85C503/5513
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 47) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 48) or like this::
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 49) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 50)   00:00.0 Host bridge: Silicon Integrated Systems [SiS] 760/M760 Host (rev 02)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 51)   00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS964 [MuTIOL Media IO]
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 52) 							LPC Controller (rev 36)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 53) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 54) in your ``lspci`` output , then this driver is for your chipset.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 55) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 56) Thank You
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 57) ---------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 58) Philip Edelbrock <phil@netroedge.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 59) - testing SiS730 support
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 60) Mark M. Hoffman <mhoffman@lightlink.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 61) - bug fixes
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 62) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 63) To anyone else which I forgot here ;), thanks!