1
0
Fork 0
forked from len0rd/rockbox

imx233: rewrite lcdif using the new register headers

Change-Id: I94329a65a7c6a4127fa05b77b9a7a291f8a50013
This commit is contained in:
Amaury Pouly 2013-06-16 16:32:03 +02:00
parent 0fa014a6fe
commit 8517cf8bed
5 changed files with 50 additions and 128 deletions

View file

@ -26,64 +26,7 @@
#include "system.h"
#include "system-target.h"
#define HW_LCDIF_BASE 0x80030000
#define HW_LCDIF_CTRL (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x0))
#define HW_LCDIF_CTRL__WORD_LENGTH_16_BIT (0 << 8)
#define HW_LCDIF_CTRL__WORD_LENGTH_8_BIT (1 << 8)
#define HW_LCDIF_CTRL__WORD_LENGTH_18_BIT (2 << 8)
#define HW_LCDIF_CTRL__WORD_LENGTH_24_BIT (3 << 8)
#define HW_LCDIF_CTRL__WORD_LENGTH_BM (3 << 8)
#define HW_LCDIF_CTRL__LCD_DATABUS_WIDTH_16_BIT (0 << 10)
#define HW_LCDIF_CTRL__LCD_DATABUS_WIDTH_18_BIT (2 << 10)
#define HW_LCDIF_CTRL__LCD_DATABUS_WIDTH_BM (3 << 10)
#define HW_LCDIF_CTRL__LCDIF_MASTER (1 << 5)
#define HW_LCDIF_CTRL__DATA_FORMAT_16_BIT (1 << 3)
#define HW_LCDIF_CTRL__DATA_FORMAT_18_BIT (1 << 2)
#define HW_LCDIF_CTRL__DATA_FORMAT_24_BIT (1 << 1)
#define HW_LCDIF_CTRL__RUN 0x1
#define HW_LCDIF_CTRL__DATA_SELECT (1 << 16)
#define HW_LCDIF_CTRL1 (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x10))
#define HW_LCDIF_CTRL1__RESET 1
#define HW_LCDIF_CTRL1__BUSY_ENABLE (1 << 2)
#define HW_LCDIF_CTRL1__MODE86 (1 << 1)
#define HW_LCDIF_CTRL1__IRQ_EN_BP 12
#define HW_LCDIF_CTRL1__IRQ_EN_BM (0xf << 12)
#define HW_LCDIF_CTRL1__IRQ_BP 8
#define HW_LCDIF_CTRL1__BYTE_PACKING_FORMAT_BM (0xf << 16)
#define HW_LCDIF_CTRL1__BYTE_PACKING_FORMAT_BP 16
#define HW_LCDIF_CTRL1__RECOVER_ON_UNDERFLOW (1 << 24)
#define HW_LCDIF__VSYNC_EDGE_IRQ 1
#define HW_LCDIF__CUR_FRAME_DONE_IRQ 2
#define HW_LCDIF__UNDERFLOW_IRQ 4
#define HW_LCDIF__OVERFLOW_IRQ 8
#define HW_LCDIF_TRANSFER_COUNT (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x20))
#define HW_LCDIF_CUR_BUF (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x30))
#define HW_LCDIF_NEXT_BUF (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x40))
#define HW_LCDIF_TIMING (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x60))
#define HW_LCDIF_TIMING__DATA_SETUP_BP 0
#define HW_LCDIF_TIMING__DATA_HOLD_BP 8
#define HW_LCDIF_TIMING__CMD_SETUP_BP 16
#define HW_LCDIF_TIMING__CMD_HOLD_BP 24
#define HW_LCDIF_CSC_COEFF0 (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x110))
#define HW_LCDIF_CSC_COEFF1 (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x120))
#define HW_LCDIF_CSC_COEFF2 (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x130))
#define HW_LCDIF_CSC_COEFF3 (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x140))
#define HW_LCDIF_CSC_COEFF4 (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x150))
#define HW_LCDIF_CSC_OFFSET (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x160))
#define HW_LCDIF_CSC_LIMIT (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x170))
#define HW_LCDIF_DATA (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x1b0))
#define HW_LCDIF_STAT (*(volatile uint32_t *)(HW_LCDIF_BASE + 0x1d0))
#define HW_LCDIF_STAT__LFIFO_FULL (1 << 29)
#define HW_LCDIF_STAT__LFIFO_EMPTY (1 << 28)
#define HW_LCDIF_STAT__TXFIFO_FULL (1 << 27)
#define HW_LCDIF_STAT__TXFIFO_EMPTY (1 << 26)
#define HW_LCDIF_STAT__BUSY (1 << 25)
#include "regs/regs-lcdif.h"
void imx233_lcdif_enable_underflow_recover(bool enable);
void imx233_lcdif_enable_bus_master(bool enable);