summaryrefslogtreecommitdiff
path: root/firmware/export/imx233.h
diff options
context:
space:
mode:
authorAmaury Pouly <pamaury@rockbox.org>2011-05-01 13:02:46 +0000
committerAmaury Pouly <pamaury@rockbox.org>2011-05-01 13:02:46 +0000
commit08fb3f65745a237e2c1eae55d856ff27702246e5 (patch)
treea56ce11ac20e4df0e36de9195306c10b71752538 /firmware/export/imx233.h
parentc0838cbfd8e45621fe3450aee1bf9458ff420d16 (diff)
downloadrockbox-08fb3f65745a237e2c1eae55d856ff27702246e5.tar.gz
rockbox-08fb3f65745a237e2c1eae55d856ff27702246e5.zip
Sansa Fuze+: initial commit (bootloader only, LCD basically working)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29808 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/imx233.h')
-rw-r--r--firmware/export/imx233.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/firmware/export/imx233.h b/firmware/export/imx233.h
new file mode 100644
index 0000000000..182442c2ab
--- /dev/null
+++ b/firmware/export/imx233.h
@@ -0,0 +1,52 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 by Amaury Pouly
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef __IMX233_H__
22#define __IMX233_H__
23
24#define IRAM_ORIG 0
25#define IRAM_SIZE 0x8000
26#define DRAM_ORIG 0x40000000
27#define DRAM_SIZE 0x20000000
28
29#define TTB_BASE_ADDR (DRAM_ORIG + (MEMORYSIZE*0x100000) - TTB_SIZE)
30#define TTB_SIZE (0x4000)
31#define TTB_BASE ((unsigned long *)TTB_BASE_ADDR)
32#define FRAME_SIZE (240*320*2)
33
34/* USBOTG */
35#define USB_QHARRAY_ATTR __attribute__((section(".qharray"),nocommon,aligned(2048)))
36#define USB_NUM_ENDPOINTS 5
37#define USB_DEVBSS_ATTR NOCACHEBSS_ATTR
38#define USB_BASE 0x80080000
39/*
40#define QHARRAY_SIZE ((64*USB_NUM_ENDPOINTS*2 + 2047) & (0xffffffff - 2047))
41#define QHARRAY_PHYS_ADDR ((FRAME_PHYS_ADDR - QHARRAY_SIZE) & (0xffffffff - 2047))
42*/
43
44#define __REG_SET(reg) (*((volatile uint32_t *)(&reg + 1)))
45#define __REG_CLR(reg) (*((volatile uint32_t *)(&reg + 2)))
46#define __REG_TOG(reg) (*((volatile uint32_t *)(&reg + 3)))
47
48#define __BLOCK_SFTRST (1 << 31)
49#define __BLOCK_CLKGATE (1 << 30)
50
51
52#endif /* __IMX233_H__ */