NameDateSize

..23-Mar-202427

ddk750.hH A D19-Sep-2019466

ddk750_chip.cH A D28-Nov-20199.5 KiB

ddk750_chip.hH A D28-Nov-20192.2 KiB

ddk750_display.cH A D28-Nov-20194.1 KiB

ddk750_display.hH A D08-May-20192.8 KiB

ddk750_dvi.cH A D02-Sep-20231.7 KiB

ddk750_dvi.hH A D29-Mar-20221.9 KiB

ddk750_hwi2c.cH A D09-Dec-20175.6 KiB

ddk750_hwi2c.hH A D09-Dec-2017373

ddk750_mode.cH A D05-Nov-20236.7 KiB

ddk750_mode.hH A D05-Nov-2023941

ddk750_power.cH A D09-Dec-20172.8 KiB

ddk750_power.hH A D05-Aug-2022865

ddk750_reg.hH A D09-Dec-201778.2 KiB

ddk750_sii164.cH A D02-Sep-202310.9 KiB

ddk750_sii164.hH A D02-Sep-20235.5 KiB

ddk750_swi2c.cH A D19-Sep-201912.6 KiB

ddk750_swi2c.hH A D19-Sep-20191.6 KiB

KconfigH A D15-Mar-2024535

MakefileH A D31-Mar-2020280

readmeH A D22-Sep-20151.5 KiB

sm750.cH A D13-Jan-202430.2 KiB

sm750.hH A D02-Sep-20215.6 KiB

sm750_accel.cH A D31-Aug-202311.7 KiB

sm750_accel.hH A D28-Nov-201911.6 KiB

sm750_cursor.cH A D31-Aug-20234 KiB

sm750_cursor.hH A D28-Nov-2019694

sm750_hw.cH A D05-Nov-202313.9 KiB

TODOH A D30-Jun-2018784

readme

1Introduction:
2	SM750 of Silicon MOtion is pci express display controller device.
3	The SM750 embedded graphics features include:
4	- dual display
5	- 2D acceleration
6	- 16MB integrated video memory
7
8About the kernel module parameter of driver:
9
10	Use 1280,8bpp index color and 60 hz mode:
11	insmod ./sm750fb.ko g_option="1280x1024-8@60"
12
13	Disable MTRR,Disable 2d acceleration,Disable hardware cursor,
14	and use a 800x600 mode :
15	insmod ./sm750fb.ko g_option="noaccel:nomtrr:nohwc:800x600"
16
17	dual frame buffer for driver with "dual" parameter
18	insmod ./sm750fb.ko g_option="dual,800x600:1024x768"
19	it will create fb0 and fb1 (or fb1,fb2 if fb0 already exist) under /dev
20	and user can use con2fb to link fbX and ttyX
21
22	Notes:
23	1) if you build the driver with built-in method, the parameter
24		you edited in the grub config file will be also the
25		same format as above modular method,but additionally add
26		"video=sm750fb:"
27		ahead of parameters,so,it looks like:
28		video=sm750fb:noaccel,1280x1024@60,otherparam,etc...
29		it equal to modular method with below command:
30		insmod ./sm750fb.ko g_option="noaccel:1280x1024@60:otherparm:etc..."
31
32	2) if you put 800x600 into the parameter without bpp and
33		refresh rate, kernel driver will defaulty use 16bpp and 60hz
34
35Important:
36	if you have vesafb enabled in your config then /dev/fb0 will be created by vesafb
37	and this driver will use fb1, fb2. In that case, you need to configure your X-server
38	to use fb1. Another simple althernative is to disable vesafb from your config.
39