tinyusb  0.4
Click here to lend your support to tinyusb donation and make a donation at pledgie.com
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
sdram.h
1 /*****************************************************************************
2  *
3  * Copyright(C) 2011, Embedded Artists AB
4  * All rights reserved.
5  *
6  ******************************************************************************
7  * Software that is described herein is for illustrative purposes only
8  * which provides customers with programming information regarding the
9  * products. This software is supplied "AS IS" without any warranties.
10  * Embedded Artists AB assumes no responsibility or liability for the
11  * use of the software, conveys no license or title under any patent,
12  * copyright, or mask work right to the product. Embedded Artists AB
13  * reserves the right to make changes in the software without
14  * notification. Embedded Artists AB also make no representation or
15  * warranty that such application will be suitable for the specified
16  * use without further testing or modification.
17  *****************************************************************************/
18 #ifndef __SDRAM_H
19 #define __SDRAM_H
20 
21 #define SDRAM_SIZE 0x2000000 /* 256Mbit = 32MB */
22 
23 #define SDRAM_BASE 0x28000000 /*CS0*/
24 
25 extern uint32_t sdram_init(void);
26 extern uint32_t sdram_test(void);
27 
28 #endif /* end __SDRAM_H */
29 /****************************************************************************
30 ** End Of File
31 *****************************************************************************/