• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..18-Mar-2022-

Kconfig A D18-Mar-2022520 1614

Makefile A D18-Mar-2022280 85

TODO A D18-Mar-2022784 2017

ddk750.h A D18-Mar-2022466 2212

ddk750_chip.c A D18-Mar-20229.5 KiB408242

ddk750_chip.h A D18-Mar-20222.2 KiB10354

ddk750_display.c A D18-Mar-20224.1 KiB160101

ddk750_display.h A D18-Mar-20222.8 KiB10852

ddk750_dvi.c A D18-Mar-20221.7 KiB6352

ddk750_dvi.h A D18-Mar-20221.9 KiB5845

ddk750_hwi2c.c A D18-Mar-20225.6 KiB248110

ddk750_hwi2c.h A D18-Mar-2022373 138

ddk750_mode.c A D18-Mar-20226.7 KiB226149

ddk750_mode.h A D18-Mar-2022939 3825

ddk750_power.c A D18-Mar-20222.8 KiB146101

ddk750_power.h A D18-Mar-2022870 4220

ddk750_reg.h A D18-Mar-202278.2 KiB1,4561,262

ddk750_sii164.c A D18-Mar-202210.9 KiB409210

ddk750_sii164.h A D18-Mar-20225.5 KiB17589

ddk750_swi2c.c A D18-Mar-202212.6 KiB505200

ddk750_swi2c.h A D18-Mar-20221.6 KiB6210

readme A D18-Mar-20221.5 KiB3931

sm750.c A D18-Mar-202229.5 KiB1,206900

sm750.h A D18-Mar-20225.6 KiB221149

sm750_accel.c A D18-Mar-202211.8 KiB415210

sm750_accel.h A D18-Mar-202211.6 KiB244166

sm750_cursor.c A D18-Mar-20224 KiB177131

sm750_cursor.h A D18-Mar-2022694 1612

sm750_hw.c A D18-Mar-202213.9 KiB569434

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