Commit 35e4d8ca authored by Elizabeth Ferdman's avatar Elizabeth Ferdman Committed by Greg Kroah-Hartman

staging: sm750fb: conform to block comment style

Fix 2 checkpatch errors:
-Block comments use * on subsequent lines,
-Block comments use a trailing */ on a separate line
to conform to block commenting style.
Signed-off-by: default avatarElizabeth Ferdman <gnudevliz@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5cf62679
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
#define DDK750_DISPLAY_H__ #define DDK750_DISPLAY_H__
/* panel path select /* panel path select
80000[29:28] * 80000[29:28]
*/ */
#define PNL_2_OFFSET 0 #define PNL_2_OFFSET 0
#define PNL_2_MASK (3 << PNL_2_OFFSET) #define PNL_2_MASK (3 << PNL_2_OFFSET)
...@@ -13,9 +13,9 @@ ...@@ -13,9 +13,9 @@
/* primary timing & plane enable bit /* primary timing & plane enable bit
1: 80000[8] & 80000[2] on * 1: 80000[8] & 80000[2] on
0: both off * 0: both off
*/ */
#define PRI_TP_OFFSET 4 #define PRI_TP_OFFSET 4
#define PRI_TP_MASK BIT(PRI_TP_OFFSET) #define PRI_TP_MASK BIT(PRI_TP_OFFSET)
#define PRI_TP_USAGE (PRI_TP_MASK << 16) #define PRI_TP_USAGE (PRI_TP_MASK << 16)
...@@ -24,8 +24,8 @@ ...@@ -24,8 +24,8 @@
/* panel sequency status /* panel sequency status
80000[27:24] * 80000[27:24]
*/ */
#define PNL_SEQ_OFFSET 6 #define PNL_SEQ_OFFSET 6
#define PNL_SEQ_MASK BIT(PNL_SEQ_OFFSET) #define PNL_SEQ_MASK BIT(PNL_SEQ_OFFSET)
#define PNL_SEQ_USAGE (PNL_SEQ_MASK << 16) #define PNL_SEQ_USAGE (PNL_SEQ_MASK << 16)
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
#define PNL_SEQ_OFF ((0 << PNL_SEQ_OFFSET) | PNL_SEQ_USAGE) #define PNL_SEQ_OFF ((0 << PNL_SEQ_OFFSET) | PNL_SEQ_USAGE)
/* dual digital output /* dual digital output
80000[19] * 80000[19]
*/ */
#define DUAL_TFT_OFFSET 8 #define DUAL_TFT_OFFSET 8
#define DUAL_TFT_MASK BIT(DUAL_TFT_OFFSET) #define DUAL_TFT_MASK BIT(DUAL_TFT_OFFSET)
#define DUAL_TFT_USAGE (DUAL_TFT_MASK << 16) #define DUAL_TFT_USAGE (DUAL_TFT_MASK << 16)
...@@ -42,9 +42,9 @@ ...@@ -42,9 +42,9 @@
#define DUAL_TFT_OFF ((0 << DUAL_TFT_OFFSET) | DUAL_TFT_USAGE) #define DUAL_TFT_OFF ((0 << DUAL_TFT_OFFSET) | DUAL_TFT_USAGE)
/* secondary timing & plane enable bit /* secondary timing & plane enable bit
1:80200[8] & 80200[2] on * 1:80200[8] & 80200[2] on
0: both off * 0: both off
*/ */
#define SEC_TP_OFFSET 5 #define SEC_TP_OFFSET 5
#define SEC_TP_MASK BIT(SEC_TP_OFFSET) #define SEC_TP_MASK BIT(SEC_TP_OFFSET)
#define SEC_TP_USAGE (SEC_TP_MASK << 16) #define SEC_TP_USAGE (SEC_TP_MASK << 16)
...@@ -52,8 +52,8 @@ ...@@ -52,8 +52,8 @@
#define SEC_TP_OFF ((0x0 << SEC_TP_OFFSET) | SEC_TP_USAGE) #define SEC_TP_OFF ((0x0 << SEC_TP_OFFSET) | SEC_TP_USAGE)
/* crt path select /* crt path select
80200[19:18] * 80200[19:18]
*/ */
#define CRT_2_OFFSET 2 #define CRT_2_OFFSET 2
#define CRT_2_MASK (3 << CRT_2_OFFSET) #define CRT_2_MASK (3 << CRT_2_OFFSET)
#define CRT_2_USAGE (CRT_2_MASK << 16) #define CRT_2_USAGE (CRT_2_MASK << 16)
...@@ -62,8 +62,8 @@ ...@@ -62,8 +62,8 @@
/* DAC affect both DVI and DSUB /* DAC affect both DVI and DSUB
4[20] * 4[20]
*/ */
#define DAC_OFFSET 7 #define DAC_OFFSET 7
#define DAC_MASK BIT(DAC_OFFSET) #define DAC_MASK BIT(DAC_OFFSET)
#define DAC_USAGE (DAC_MASK << 16) #define DAC_USAGE (DAC_MASK << 16)
...@@ -71,8 +71,8 @@ ...@@ -71,8 +71,8 @@
#define DAC_OFF ((0x1 << DAC_OFFSET) | DAC_USAGE) #define DAC_OFF ((0x1 << DAC_OFFSET) | DAC_USAGE)
/* DPMS only affect D-SUB head /* DPMS only affect D-SUB head
0[31:30] * 0[31:30]
*/ */
#define DPMS_OFFSET 9 #define DPMS_OFFSET 9
#define DPMS_MASK (3 << DPMS_OFFSET) #define DPMS_MASK (3 << DPMS_OFFSET)
#define DPMS_USAGE (DPMS_MASK << 16) #define DPMS_USAGE (DPMS_MASK << 16)
...@@ -81,18 +81,16 @@ ...@@ -81,18 +81,16 @@
/* /* LCD1 means panel path TFT1 & panel path DVI (so enable DAC)
LCD1 means panel path TFT1 & panel path DVI (so enable DAC) * CRT means crt path DSUB
CRT means crt path DSUB */
*/
typedef enum _disp_output_t { typedef enum _disp_output_t {
do_LCD1_PRI = PNL_2_PRI | PRI_TP_ON | PNL_SEQ_ON | DAC_ON, do_LCD1_PRI = PNL_2_PRI | PRI_TP_ON | PNL_SEQ_ON | DAC_ON,
do_LCD1_SEC = PNL_2_SEC | SEC_TP_ON | PNL_SEQ_ON | DAC_ON, do_LCD1_SEC = PNL_2_SEC | SEC_TP_ON | PNL_SEQ_ON | DAC_ON,
do_LCD2_PRI = CRT_2_PRI | PRI_TP_ON | DUAL_TFT_ON, do_LCD2_PRI = CRT_2_PRI | PRI_TP_ON | DUAL_TFT_ON,
do_LCD2_SEC = CRT_2_SEC | SEC_TP_ON | DUAL_TFT_ON, do_LCD2_SEC = CRT_2_SEC | SEC_TP_ON | DUAL_TFT_ON,
/* /* do_DSUB_PRI = CRT_2_PRI | PRI_TP_ON | DPMS_ON|DAC_ON,
do_DSUB_PRI = CRT_2_PRI|PRI_TP_ON|DPMS_ON|DAC_ON, * do_DSUB_SEC = CRT_2_SEC | SEC_TP_ON | DPMS_ON|DAC_ON,
do_DSUB_SEC = CRT_2_SEC|SEC_TP_ON|DPMS_ON|DAC_ON,
*/ */
do_CRT_PRI = CRT_2_PRI | PRI_TP_ON | DPMS_ON | DAC_ON, do_CRT_PRI = CRT_2_PRI | PRI_TP_ON | DPMS_ON | DAC_ON,
do_CRT_SEC = CRT_2_SEC | SEC_TP_ON | DPMS_ON | DAC_ON, do_CRT_SEC = CRT_2_SEC | SEC_TP_ON | DPMS_ON | DAC_ON,
......
...@@ -21,7 +21,7 @@ unsigned char bus_speed_mode ...@@ -21,7 +21,7 @@ unsigned char bus_speed_mode
POKE32(GPIO_MUX, value); POKE32(GPIO_MUX, value);
/* Enable Hardware I2C power. /* Enable Hardware I2C power.
TODO: Check if we need to enable GPIO power? * TODO: Check if we need to enable GPIO power?
*/ */
enableI2C(1); enableI2C(1);
......
...@@ -4,15 +4,14 @@ ...@@ -4,15 +4,14 @@
#include "ddk750_mode.h" #include "ddk750_mode.h"
#include "ddk750_chip.h" #include "ddk750_chip.h"
/* /* SM750LE only:
SM750LE only: * This function takes care extra registers and bit fields required to set
This function takes care extra registers and bit fields required to set * up a mode in SM750LE
up a mode in SM750LE *
* Explanation about Display Control register:
Explanation about Display Control register: * HW only supports 7 predefined pixel clocks, and clock select is
HW only supports 7 predefined pixel clocks, and clock select is * in bit 29:27 of Display Control register.
in bit 29:27 of Display Control register. */
*/
static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam, unsigned long dispControl) static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam, unsigned long dispControl)
{ {
unsigned long x, y; unsigned long x, y;
...@@ -21,9 +20,9 @@ static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam, ...@@ -21,9 +20,9 @@ static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam,
y = pModeParam->vertical_display_end; y = pModeParam->vertical_display_end;
/* SM750LE has to set up the top-left and bottom-right /* SM750LE has to set up the top-left and bottom-right
registers as well. * registers as well.
Note that normal SM750/SM718 only use those two register for * Note that normal SM750/SM718 only use those two register for
auto-centering mode. * auto-centering mode.
*/ */
POKE32(CRT_AUTO_CENTERING_TL, 0); POKE32(CRT_AUTO_CENTERING_TL, 0);
...@@ -33,8 +32,8 @@ static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam, ...@@ -33,8 +32,8 @@ static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam,
((x - 1) & CRT_AUTO_CENTERING_BR_RIGHT_MASK)); ((x - 1) & CRT_AUTO_CENTERING_BR_RIGHT_MASK));
/* Assume common fields in dispControl have been properly set before /* Assume common fields in dispControl have been properly set before
calling this function. * calling this function.
This function only sets the extra fields in dispControl. * This function only sets the extra fields in dispControl.
*/ */
/* Clear bit 29:27 of display control register */ /* Clear bit 29:27 of display control register */
......
...@@ -174,8 +174,8 @@ long sii164InitChip( ...@@ -174,8 +174,8 @@ long sii164InitChip(
i2cWriteReg(SII164_I2C_ADDRESS, SII164_CONFIGURATION, config); i2cWriteReg(SII164_I2C_ADDRESS, SII164_CONFIGURATION, config);
/* De-skew enabled with default 111b value. /* De-skew enabled with default 111b value.
This will fix some artifacts problem in some mode on board 2.2. * This fixes some artifacts problem in some mode on board 2.2.
Somehow this fix does not affect board 2.1. * Somehow this fix does not affect board 2.1.
*/ */
if (deskewEnable == 0) if (deskewEnable == 0)
config = SII164_DESKEW_DISABLE; config = SII164_DESKEW_DISABLE;
...@@ -344,7 +344,8 @@ void sii164EnableHotPlugDetection( ...@@ -344,7 +344,8 @@ void sii164EnableHotPlugDetection(
detectReg = i2cReadReg(SII164_I2C_ADDRESS, SII164_DETECT); detectReg = i2cReadReg(SII164_I2C_ADDRESS, SII164_DETECT);
/* Depending on each DVI controller, need to enable the hot plug based on each /* Depending on each DVI controller, need to enable the hot plug based on each
individual chip design. */ * individual chip design.
*/
if (enableHotPlug != 0) if (enableHotPlug != 0)
sii164SelectHotPlugDetectionMode(SII164_HOTPLUG_USE_MDI); sii164SelectHotPlugDetectionMode(SII164_HOTPLUG_USE_MDI);
else else
......
...@@ -89,11 +89,11 @@ static void sw_i2c_wait(void) ...@@ -89,11 +89,11 @@ static void sw_i2c_wait(void)
* always be non-zero,which makes the while loop * always be non-zero,which makes the while loop
* never finish. * never finish.
* use non-ultimate for loop below is safe * use non-ultimate for loop below is safe
* */ */
/* Change wait algorithm to use PCI bus clock, /* Change wait algorithm to use PCI bus clock,
it's more reliable than counter loop .. * it's more reliable than counter loop ..
write 0x61 to 0x3ce and read from 0x3cf * write 0x61 to 0x3ce and read from 0x3cf
*/ */
int i, tmp; int i, tmp;
...@@ -501,7 +501,7 @@ long sm750_sw_i2c_write_reg( ...@@ -501,7 +501,7 @@ long sm750_sw_i2c_write_reg(
sw_i2c_start(); sw_i2c_start();
/* Send the device address and read the data. All should return success /* Send the device address and read the data. All should return success
in order for the writing processed to be successful * in order for the writing processed to be successful
*/ */
if ((sw_i2c_write_byte(addr) != 0) || if ((sw_i2c_write_byte(addr) != 0) ||
(sw_i2c_write_byte(reg) != 0) || (sw_i2c_write_byte(reg) != 0) ||
......
...@@ -147,16 +147,16 @@ struct lynxfb_output { ...@@ -147,16 +147,16 @@ struct lynxfb_output {
int dpms; int dpms;
int paths; int paths;
/* which paths(s) this output stands for,for sm750: /* which paths(s) this output stands for,for sm750:
paths=1:means output for panel paths * paths=1:means output for panel paths
paths=2:means output for crt paths * paths=2:means output for crt paths
paths=3:means output for both panel and crt paths * paths=3:means output for both panel and crt paths
*/ */
int *channel; int *channel;
/* which channel these outputs linked with,for sm750: /* which channel these outputs linked with,for sm750:
*channel=0 means primary channel * *channel=0 means primary channel
*channel=1 means secondary channel * *channel=1 means secondary channel
output->channel ==> &crtc->channel * output->channel ==> &crtc->channel
*/ */
void *priv; void *priv;
......
...@@ -67,7 +67,8 @@ void hw_de_init(struct lynx_accel *accel) ...@@ -67,7 +67,8 @@ void hw_de_init(struct lynx_accel *accel)
/* set2dformat only be called from setmode functions /* set2dformat only be called from setmode functions
* but if you need dual framebuffer driver,need call set2dformat * but if you need dual framebuffer driver,need call set2dformat
* every time you use 2d function */ * every time you use 2d function
*/
void hw_set2dformat(struct lynx_accel *accel, int fmt) void hw_set2dformat(struct lynx_accel *accel, int fmt)
{ {
...@@ -90,7 +91,8 @@ int hw_fillrect(struct lynx_accel *accel, ...@@ -90,7 +91,8 @@ int hw_fillrect(struct lynx_accel *accel,
if (accel->de_wait() != 0) { if (accel->de_wait() != 0) {
/* int time wait and always busy,seems hardware /* int time wait and always busy,seems hardware
* got something error */ * got something error
*/
pr_debug("De engine always busy\n"); pr_debug("De engine always busy\n");
return -1; return -1;
} }
...@@ -152,24 +154,26 @@ unsigned int rop2) /* ROP value */ ...@@ -152,24 +154,26 @@ unsigned int rop2) /* ROP value */
/* Determine direction of operation */ /* Determine direction of operation */
if (sy < dy) { if (sy < dy) {
/* +----------+ /* +----------+
|S | * |S |
| +----------+ * | +----------+
| | | | * | | | |
| | | | * | | | |
+---|------+ | * +---|------+ |
| D| * | D|
+----------+ */ * +----------+
*/
nDirection = BOTTOM_TO_TOP; nDirection = BOTTOM_TO_TOP;
} else if (sy > dy) { } else if (sy > dy) {
/* +----------+ /* +----------+
|D | * |D |
| +----------+ * | +----------+
| | | | * | | | |
| | | | * | | | |
+---|------+ | * +---|------+ |
| S| * | S|
+----------+ */ * +----------+
*/
nDirection = TOP_TO_BOTTOM; nDirection = TOP_TO_BOTTOM;
} else { } else {
...@@ -177,22 +181,24 @@ unsigned int rop2) /* ROP value */ ...@@ -177,22 +181,24 @@ unsigned int rop2) /* ROP value */
if (sx <= dx) { if (sx <= dx) {
/* +------+---+------+ /* +------+---+------+
|S | | D| * |S | | D|
| | | | * | | | |
| | | | * | | | |
| | | | * | | | |
+------+---+------+ */ * +------+---+------+
*/
nDirection = RIGHT_TO_LEFT; nDirection = RIGHT_TO_LEFT;
} else { } else {
/* sx > dx */ /* sx > dx */
/* +------+---+------+ /* +------+---+------+
|D | | S| * |D | | S|
| | | | * | | | |
| | | | * | | | |
| | | | * | | | |
+------+---+------+ */ * +------+---+------+
*/
nDirection = LEFT_TO_RIGHT; nDirection = LEFT_TO_RIGHT;
} }
...@@ -208,23 +214,26 @@ unsigned int rop2) /* ROP value */ ...@@ -208,23 +214,26 @@ unsigned int rop2) /* ROP value */
} }
/* Note: /* Note:
DE_FOREGROUND are DE_BACKGROUND are don't care. * DE_FOREGROUND are DE_BACKGROUND are don't care.
DE_COLOR_COMPARE and DE_COLOR_COMPARE_MAKS are set by set deSetTransparency(). * DE_COLOR_COMPARE and DE_COLOR_COMPARE_MAKS
* are set by set deSetTransparency().
*/ */
/* 2D Source Base. /* 2D Source Base.
It is an address offset (128 bit aligned) from the beginning of frame buffer. * It is an address offset (128 bit aligned)
* from the beginning of frame buffer.
*/ */
write_dpr(accel, DE_WINDOW_SOURCE_BASE, sBase); /* dpr40 */ write_dpr(accel, DE_WINDOW_SOURCE_BASE, sBase); /* dpr40 */
/* 2D Destination Base. /* 2D Destination Base.
It is an address offset (128 bit aligned) from the beginning of frame buffer. * It is an address offset (128 bit aligned)
* from the beginning of frame buffer.
*/ */
write_dpr(accel, DE_WINDOW_DESTINATION_BASE, dBase); /* dpr44 */ write_dpr(accel, DE_WINDOW_DESTINATION_BASE, dBase); /* dpr44 */
/* Program pitch (distance between the 1st points of two adjacent lines). /* Program pitch (distance between the 1st points of two adjacent lines).
Note that input pitch is BYTE value, but the 2D Pitch register uses * Note that input pitch is BYTE value, but the 2D Pitch register uses
pixel values. Need Byte to pixel conversion. * pixel values. Need Byte to pixel conversion.
*/ */
write_dpr(accel, DE_PITCH, write_dpr(accel, DE_PITCH,
((dPitch / Bpp << DE_PITCH_DESTINATION_SHIFT) & ((dPitch / Bpp << DE_PITCH_DESTINATION_SHIFT) &
...@@ -232,7 +241,8 @@ unsigned int rop2) /* ROP value */ ...@@ -232,7 +241,8 @@ unsigned int rop2) /* ROP value */
(sPitch / Bpp & DE_PITCH_SOURCE_MASK)); /* dpr10 */ (sPitch / Bpp & DE_PITCH_SOURCE_MASK)); /* dpr10 */
/* Screen Window width in Pixels. /* Screen Window width in Pixels.
2D engine uses this value to calculate the linear address in frame buffer for a given point. * 2D engine uses this value to calculate the linear address in frame buffer
* for a given point.
*/ */
write_dpr(accel, DE_WINDOW_WIDTH, write_dpr(accel, DE_WINDOW_WIDTH,
((dPitch / Bpp << DE_WINDOW_WIDTH_DST_SHIFT) & ((dPitch / Bpp << DE_WINDOW_WIDTH_DST_SHIFT) &
...@@ -307,17 +317,18 @@ int hw_imageblit(struct lynx_accel *accel, ...@@ -307,17 +317,18 @@ int hw_imageblit(struct lynx_accel *accel,
return -1; return -1;
/* 2D Source Base. /* 2D Source Base.
Use 0 for HOST Blt. * Use 0 for HOST Blt.
*/ */
write_dpr(accel, DE_WINDOW_SOURCE_BASE, 0); write_dpr(accel, DE_WINDOW_SOURCE_BASE, 0);
/* 2D Destination Base. /* 2D Destination Base.
It is an address offset (128 bit aligned) from the beginning of frame buffer. * It is an address offset (128 bit aligned)
* from the beginning of frame buffer.
*/ */
write_dpr(accel, DE_WINDOW_DESTINATION_BASE, dBase); write_dpr(accel, DE_WINDOW_DESTINATION_BASE, dBase);
/* Program pitch (distance between the 1st points of two adjacent lines). /* Program pitch (distance between the 1st points of two adjacent lines).
Note that input pitch is BYTE value, but the 2D Pitch register uses * Note that input pitch is BYTE value, but the 2D Pitch register uses
pixel values. Need Byte to pixel conversion. * pixel values. Need Byte to pixel conversion.
*/ */
write_dpr(accel, DE_PITCH, write_dpr(accel, DE_PITCH,
((dPitch / bytePerPixel << DE_PITCH_DESTINATION_SHIFT) & ((dPitch / bytePerPixel << DE_PITCH_DESTINATION_SHIFT) &
...@@ -325,15 +336,18 @@ int hw_imageblit(struct lynx_accel *accel, ...@@ -325,15 +336,18 @@ int hw_imageblit(struct lynx_accel *accel,
(dPitch / bytePerPixel & DE_PITCH_SOURCE_MASK)); /* dpr10 */ (dPitch / bytePerPixel & DE_PITCH_SOURCE_MASK)); /* dpr10 */
/* Screen Window width in Pixels. /* Screen Window width in Pixels.
2D engine uses this value to calculate the linear address in frame buffer for a given point. * 2D engine uses this value to calculate the linear address
* in frame buffer for a given point.
*/ */
write_dpr(accel, DE_WINDOW_WIDTH, write_dpr(accel, DE_WINDOW_WIDTH,
((dPitch / bytePerPixel << DE_WINDOW_WIDTH_DST_SHIFT) & ((dPitch / bytePerPixel << DE_WINDOW_WIDTH_DST_SHIFT) &
DE_WINDOW_WIDTH_DST_MASK) | DE_WINDOW_WIDTH_DST_MASK) |
(dPitch / bytePerPixel & DE_WINDOW_WIDTH_SRC_MASK)); (dPitch / bytePerPixel & DE_WINDOW_WIDTH_SRC_MASK));
/* Note: For 2D Source in Host Write, only X_K1_MONO field is needed, and Y_K2 field is not used. /* Note: For 2D Source in Host Write, only X_K1_MONO field is needed,
For mono bitmap, use startBit for X_K1. */ * and Y_K2 field is not used.
* For mono bitmap, use startBit for X_K1.
*/
write_dpr(accel, DE_SOURCE, write_dpr(accel, DE_SOURCE,
(startBit << DE_SOURCE_X_K1_SHIFT) & (startBit << DE_SOURCE_X_K1_SHIFT) &
DE_SOURCE_X_K1_MONO_MASK); /* dpr00 */ DE_SOURCE_X_K1_MONO_MASK); /* dpr00 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment