Colin Ian King f0e00da2db staging: sm750fb: initialize max_d to maximum D value of 6 vor 9 Jahren
..
Kconfig 2dc340910b staging: sm750fb: Add missing Kconfig dependency vor 10 Jahren
Makefile 81dee67e21 staging: sm750fb: add sm750 to staging vor 10 Jahren
TODO 288ef567ab staging: sm750: Fix lynxfb_ops_imageblit() if image->depth != 1 vor 10 Jahren
ddk750.h 81dee67e21 staging: sm750fb: add sm750 to staging vor 10 Jahren
ddk750_chip.c f0e00da2db staging: sm750fb: initialize max_d to maximum D value of 6 vor 9 Jahren
ddk750_chip.h 0221381c46 staging: sm750fb: Remove multiple blank lines vor 10 Jahren
ddk750_display.c cdce1f1877 staging: sm750fb: change definition of CRT_DISPLAY_CTRL multi-bit fields vor 9 Jahren
ddk750_display.h a5eabae947 staging: sm750fb: Prefer using BIT Macro vor 10 Jahren
ddk750_dvi.c ce7e581e6b Staging: sm750fb: Remove unused functions vor 9 Jahren
ddk750_dvi.h ce7e581e6b Staging: sm750fb: Remove unused functions vor 9 Jahren
ddk750_help.c 9ccc5f4427 staging: sm750fb: add space before open parenthesis vor 10 Jahren
ddk750_help.h 779494492e staging: sm750fb: remove sm750_help.h vor 9 Jahren
ddk750_hwi2c.c 732053a0a0 staging: sm750fb: Remove parentheses from return arguments vor 9 Jahren
ddk750_hwi2c.h 9137f812e9 staging: sm750fb: ddk750_*i2c: shorten lines to under 80 characters vor 10 Jahren
ddk750_mode.c 8ffe46109b staging: sm750fb: change definition of PANEL_VERTICAL_SYNC fields vor 9 Jahren
ddk750_mode.h 259fef35c7 staging: sm750fb: fix brace placement vor 10 Jahren
ddk750_power.c 69988ba2c5 Staging: sm750fb: Remove leading and trailing whitespace. vor 9 Jahren
ddk750_power.h 5372350be3 staging: sm750fb: use BIT macro for MISC_CTRL single-bit fields vor 9 Jahren
ddk750_reg.h 0d5d733b4a staging: sm750: change definition of multi-bit register fields vor 9 Jahren
ddk750_sii164.c 732053a0a0 staging: sm750fb: Remove parentheses from return arguments vor 9 Jahren
ddk750_sii164.h fbb8c96357 staging: sm750fb, fix typos vor 9 Jahren
ddk750_swi2c.c 1282bade3b staging: sm750fb: remove dead code vor 10 Jahren
ddk750_swi2c.h fe82004489 staging: sm750fb: ddk750_swi2c: further reduce CamelCase vor 10 Jahren
readme 69e98df782 Staging: fixed multiple spelling errors. vor 10 Jahren
sm750.c 6504b9bdf6 staging: sm750fb: convert pr_err() to dev_err() vor 9 Jahren
sm750.h fbb8c96357 staging: sm750fb, fix typos vor 9 Jahren
sm750_accel.c 779494492e staging: sm750fb: remove sm750_help.h vor 9 Jahren
sm750_accel.h 0d5d733b4a staging: sm750: change definition of multi-bit register fields vor 9 Jahren
sm750_cursor.c fcf59a7c61 staging: sm750fb: Remove Unused macro vor 9 Jahren
sm750_cursor.h cc6c16df80 Staging: sm750fb: Fix "foo* bar" should be "foo *bar" errors vor 10 Jahren
sm750_hw.c 7ea833df30 staging: sm750fb: change definition of CRT_FB_ADDRESS fields vor 9 Jahren

readme

Introduction:
SM750 of Silicon MOtion is pci express display controller device.
The SM750 embedded graphics features include:
- dual display
- 2D acceleration
- 16MB integrated video memory

About the kernel module parameter of driver:

Use 1280,8bpp index color and 60 hz mode:
insmod ./sm750fb.ko g_option="1280x1024-8@60"

Disable MTRR,Disable 2d acceleration,Disable hardware cursor,
and use a 800x600 mode :
insmod ./sm750fb.ko g_option="noaccel:nomtrr:nohwc:800x600"

dual frame buffer for driver with "dual" parameter
insmod ./sm750fb.ko g_option="dual,800x600:1024x768"
it will create fb0 and fb1 (or fb1,fb2 if fb0 already exist) under /dev
and user can use con2fb to link fbX and ttyX

Notes:
1) if you build the driver with built-in method, the parameter
you edited in the grub config file will be also the
same format as above modular method,but additionally add
"video=sm750fb:"
ahead of parameters,so,it looks like:
video=sm750fb:noaccel,1280x1024@60,otherparam,etc...
it equal to modular method with below command:
insmod ./sm750fb.ko g_option="noaccel:1280x1024@60:otherparm:etc..."

2) if you put 800x600 into the parameter without bpp and
refresh rate, kernel driver will defaulty use 16bpp and 60hz

Important:
if you have vesafb enabled in your config then /dev/fb0 will be created by vesafb
and this driver will use fb1, fb2. In that case, you need to configure your X-server
to use fb1. Another simple althernative is to disable vesafb from your config.