aboutsummaryrefslogtreecommitdiff
path: root/tcl/board/uptech_2410.cfg
blob: 0a2c475f718ca0361edd5a940ea8933ffc7da66f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Target Configuration for the Uptech 2410 board.
# This configuration should also work on smdk2410, but I haven't tested it yet.
# Author: xionglingfeng@Gmail.com

source [find target/samsung_s3c2410.cfg]

$_TARGETNAME configure -event reset-init { uptech2410_init }
$_TARGETNAME configure -event gdb-attach { reset init }

proc init_pll_sdram { } {
	#echo "---------- Initializing PLL and SDRAM ---------"
	#watchdog timer disable
	mww phys 0x53000000 0x00000000

	#disable all interrupts
	mww phys 0x4a000008 0xffffffff

	#disable all sub-interrupts
	mww phys 0x4a00001c 0x000007ff

	#clear all source pending bits
	mww phys 0x4a000000 0xffffffff

	#clear all sub-source pending bits
	mww phys 0x4a000018 0x000007ff

	#clear interrupt pending bit
	mww phys 0x4a000010 0xffffffff

	#PLL locktime counter
	mww phys 0x4c000000 0x00ffffff

	#Fin=12MHz Fout=202.8MHz
	#mww phys 0x4c000004 0x000a1031

	#FCLK:HCLK:PCLK = 1:2:4
	mww phys 0x4c000014 0x00000003


	mww phys 0x48000000 0x11111110
	mww phys 0x48000004 0x00007FFC
	mww phys 0x48000008 0x00007FFC
	mww phys 0x4800000c 0x00000700
	mww phys 0x48000010 0x00000700
	mww phys 0x48000014 0x00002E50
	mww phys 0x48000018 0x00002E50
	mww phys 0x4800001c 0x00018005
	mww phys 0x48000020 0x00018005
	mww phys 0x48000024 0x008c04e9
	mww phys 0x48000028 0x000000b2
	mww phys 0x4800002c 0x00000030
	mww phys 0x48000030 0x00000030
}

proc uptech2410_init { } {
	init_pll_sdram
	#echo "---------- Probing Nand flash ----------"
	nand probe 0
	#echo "---------- Enable some functions ----------"
}

set _NANDNAME $_CHIPNAME.nand
nand device $_NANDNAME s3c2410 $_TARGETNAME