fb_ptr->CS[0].CSMR = 0;
/* Enable external LCD mapped on CS0 */
/* CS0 base address */
fb_ptr->CS[0].CSAR = base_address;
/* CS0 control (8bit data, 1 wait state) */
fb_ptr->CS[0].CSCR = //FB_CSCR_BLS_MASK |
FB_CSCR_AA_MASK | /* 使能内部应答*/
FB_CSCR_WS(0x3F) | /*Wait States WS 在内部应答信号之前加入ws个*/
FB_CSCR_PS(1) | /*8-bit port size. Valid data is sampled and driven on FB_D[31:24] when BLS is 0b, or FB_D[7:0] when BLS is 1b.*/
FB_CSCR_RDAH(0x03) |
FB_CSCR_WRAH(0x03) |
FB_CSCR_ASET(0X03) | /* Address setup;延长有效地址时间*/
FB_CSCR_BEM_MASK;
/*
* The address range is set to 128K because
* the DC signal is connected on address wire
*/
/* 根据寻址空间大小计算基地址掩码,设置FB_CSAR[BA]=0x6000,FB_CSMR[BAM]=0x0001
* 则相应的FB_CS的片选范围为0x6000_0000~0x6000_FFFF和0x6001_0000~0x6001_FFFF
* 连续的128KB的空间,即BAM相应位的作用就是屏蔽了BA相应位在寻址译码上的作用。
*/
addr_space = (addr_space - 1) >> 16;
#define __EXTERNAL_LCD_DC_BASE 0x60000001 //FB_AD0 作为液晶选址线
void _bsp_flexbus_lcd_setup (const uint32_t base_address)
{
FB_MemMapPtr fb_ptr = FB_BASE_PTR;
uint32_t addr_space = 64 * 1024;
fb_ptr->CS[0].CSMR = 0;
/* Enable external LCD mapped on CS0 */
/* CS0 base address */
fb_ptr->CS[0].CSAR = base_address;
/* CS0 control (8bit data, 1 wait state) */
fb_ptr->CS[0].CSCR = //FB_CSCR_BLS_MASK |
FB_CSCR_AA_MASK | /* 使能内部应答*/
FB_CSCR_WS(0x3F) | /*Wait States WS 在内部应答信号之前加入ws个*/
FB_CSCR_PS(1) | /*8-bit port size. Valid data is sampled and driven on FB_D[31:24] when BLS is 0b, or FB_D[7:0] when BLS is 1b.*/
FB_CSCR_RDAH(0x03) |
FB_CSCR_WRAH(0x03) |
FB_CSCR_ASET(0X03) | /* Address setup;延长有效地址时间*/
FB_CSCR_BEM_MASK;
/*
* The address range is set to 128K because
* the DC signal is connected on address wire
*/
/* 根据寻址空间大小计算基地址掩码,设置FB_CSAR[BA]=0x6000,FB_CSMR[BAM]=0x0001
* 则相应的FB_CS的片选范围为0x6000_0000~0x6000_FFFF和0x6001_0000~0x6001_FFFF
* 连续的128KB的空间,即BAM相应位的作用就是屏蔽了BA相应位在寻址译码上的作用。
*/
addr_space = (addr_space - 1) >> 16;
fb_ptr->CS[0].CSMR = FB_CSMR_BAM(addr_space) //设置基地址掩码,地址空间 =2^n(n=BAM+16)//FB_CSMR_BAM(1)
| FB_CSMR_V_MASK; // 使能CS信号
}
一周热门 更多>