source: svn/newcon3bcm2_21bu/rockford/bsp/bcm97552/no-os/src/sde/boardcfg.h

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 1.1 KB
Line 
1
2#ifndef __BOARD_CFG_H__
3#define __BOARD_CFG_H__
4
5#include "bchp_common.h"
6#include "bchp_uarta.h"
7#include "bchp_uartb.h"
8#include "bchp_uartc.h"
9#include "chipcfg.h"
10
11#define UART_BAUD_RATE_115200   (44) /* baud rate = 81MHz / (16 *44) = 115200 approx */
12#define UART_DLS_8BITS                  (0x03)
13
14#define UARTA_ADDR_OFFSET               ( BCHP_UARTA_REG_START - BCHP_UARTA_REG_START )
15#define UARTB_ADDR_OFFSET               ( BCHP_UARTB_REG_START - BCHP_UARTA_REG_START )
16#define UARTC_ADDR_OFFSET               ( BCHP_UARTC_REG_START - BCHP_UARTA_REG_START )
17
18#ifndef UART_ADDR_OFFSET
19#define UART_ADDR_OFFSET        UARTA_ADDR_OFFSET
20#endif
21
22
23/* these defines are used for mapping memc1 to kuseg address space, we need this for 7420 splash, where the surface
24 * mapping is done at memc1 space
25 */
26
27#define PAGE_SIZE_64_MB                         0x07FFE000
28#define PAGE_SIZE_128_MB                        0x0FFFE000
29#define PAGE_SIZE_256_MB                        0x1FFFE000
30#define DRAM_SIZE_TO_BE_MAPPED          (256*1024*1024)
31#define DRAM_VIRT_ADDR_START            0xE0000000
32#define DRAM_PHYS_ADDR_START            0x90000000
33#define TLB_PAGE_SIZE                           PAGE_SIZE_256_MB
34
35#define BOOT_FROM_NAND                          (1)
36#define BOOT_FROM_NOR                           (2)
37#define BOOT_FROM_SPI                           (3)
38
39#endif
Note: See TracBrowser for help on using the repository browser.