LCD_E             112 include/asm-frv/mb-regs.h #define LCD_CMD_CLEAR		(LCD_E|0x001)
LCD_E             113 include/asm-frv/mb-regs.h #define LCD_CMD_HOME		(LCD_E|0x002)
LCD_E             114 include/asm-frv/mb-regs.h #define LCD_CMD_CURSOR_INC	(LCD_E|0x004)
LCD_E             115 include/asm-frv/mb-regs.h #define LCD_CMD_SCROLL_INC	(LCD_E|0x005)
LCD_E             116 include/asm-frv/mb-regs.h #define LCD_CMD_CURSOR_DEC	(LCD_E|0x006)
LCD_E             117 include/asm-frv/mb-regs.h #define LCD_CMD_SCROLL_DEC	(LCD_E|0x007)
LCD_E             118 include/asm-frv/mb-regs.h #define LCD_CMD_OFF		(LCD_E|0x008)
LCD_E             119 include/asm-frv/mb-regs.h #define LCD_CMD_ON(CRSR,BLINK)	(LCD_E|0x00c|(CRSR<<1)|BLINK)
LCD_E             120 include/asm-frv/mb-regs.h #define LCD_CMD_CURSOR_MOVE_L	(LCD_E|0x010)
LCD_E             121 include/asm-frv/mb-regs.h #define LCD_CMD_CURSOR_MOVE_R	(LCD_E|0x014)
LCD_E             122 include/asm-frv/mb-regs.h #define LCD_CMD_DISPLAY_SHIFT_L	(LCD_E|0x018)
LCD_E             123 include/asm-frv/mb-regs.h #define LCD_CMD_DISPLAY_SHIFT_R	(LCD_E|0x01c)
LCD_E             124 include/asm-frv/mb-regs.h #define LCD_CMD_FUNCSET(DL,N,F)	(LCD_E|0x020|(DL<<4)|(N<<3)|(F<<2))
LCD_E             125 include/asm-frv/mb-regs.h #define LCD_CMD_SET_CG_ADDR(X)	(LCD_E|0x040|X)
LCD_E             126 include/asm-frv/mb-regs.h #define LCD_CMD_SET_DD_ADDR(X)	(LCD_E|0x080|X)
LCD_E             127 include/asm-frv/mb-regs.h #define LCD_CMD_READ_BUSY	(LCD_E|LCD_RW)
LCD_E             128 include/asm-frv/mb-regs.h #define LCD_DATA_WRITE(X)	(LCD_E|LCD_RS|(X))
LCD_E             129 include/asm-frv/mb-regs.h #define LCD_DATA_READ		(LCD_E|LCD_RS|LCD_RW)