• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

KconfigD23-Jun-2016388 119

MakefileD23-Jun-2016252 53

TODOD23-Jun-2016546 1614

ddk750.hD23-Jun-2016704 2513

ddk750_chip.cD23-Jun-201615.5 KiB623401

ddk750_chip.hD23-Jun-20162.7 KiB8857

ddk750_display.cD23-Jun-20169.2 KiB308196

ddk750_display.hD23-Jun-20164.1 KiB16194

ddk750_dvi.cD23-Jun-20162.5 KiB10065

ddk750_dvi.hD23-Jun-20162.1 KiB6851

ddk750_help.cD23-Jun-2016406 2012

ddk750_help.hD23-Jun-2016818 3022

ddk750_hwi2c.cD23-Jun-20166.3 KiB272128

ddk750_hwi2c.hD23-Jun-2016327 117

ddk750_mode.cD23-Jun-20167.6 KiB206134

ddk750_mode.hD23-Jun-2016986 4429

ddk750_power.cD23-Jun-20165.1 KiB240163

ddk750_power.hD23-Jun-20161.2 KiB7229

ddk750_reg.hD23-Jun-2016135.1 KiB2,6172,364

ddk750_sii164.cD23-Jun-201611.9 KiB426218

ddk750_sii164.hD23-Jun-20165.5 KiB17392

ddk750_swi2c.cD23-Jun-201613.7 KiB523224

ddk750_swi2c.hD23-Jun-20162.4 KiB9320

modedb.hD23-Jun-20167.5 KiB222166

readmeD23-Jun-20161.5 KiB3931

sm750.cD23-Jun-201633.3 KiB1,4041,084

sm750.hD23-Jun-20164.8 KiB187121

sm750_accel.cD23-Jun-201613.4 KiB438292

sm750_accel.hD23-Jun-201613.1 KiB276230

sm750_cursor.cD23-Jun-20165.1 KiB252185

sm750_cursor.hD23-Jun-2016620 1815

sm750_help.hD23-Jun-20164.3 KiB11269

sm750_hw.cD23-Jun-201615.6 KiB643495

sm750_hw.hD23-Jun-20162.8 KiB10567

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 paramter 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 paramter
24		you edited in the grub config file will be also the
25		same format as above modular method,but additionaly 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 paramter 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