Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 207137
b: refs/heads/master
c: 98560bd
h: refs/heads/master
i:
  207135: 5c872ba
v: v3
  • Loading branch information
Jesper Nilsson committed Aug 4, 2010
1 parent 9bba81c commit da535b5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2d0503d1a6816e920e5b827bbe4eea7370c8130e
refs/heads/master: 98560bd83e73b5c0cf38e3d984892f46a405a172
4 changes: 4 additions & 0 deletions trunk/arch/cris/arch-v32/mach-a3/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ config ETRAX_DDR2_CONFIG
hex "DDR2 config"
default "0"

config ETRAX_DDR2_LATENCY
hex "DDR2 latency"
default "0"

config ETRAX_PIO_CE0_CFG
hex "PIO CE0 configuration"
default "0"
Expand Down
16 changes: 15 additions & 1 deletion trunk/arch/cris/arch-v32/mach-a3/dram_init.S
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,21 @@

;; Refer to ddr2 MDS for initialization sequence

; 2. Wait 200us
move.d 10000, $r2
1: bne 1b
subq 1, $r2

; Start clock
move.d REG_ADDR(ddr2, regi_ddr2_ctrl, rw_phy_cfg), $r0
move.d REG_STATE(ddr2, rw_phy_cfg, en, yes), $r1
move.d $r1, [$r0]

; 2. Wait 200us
move.d 10000, $r2
1: bne 1b
subq 1, $r2

; Reset phy and start calibration
move.d REG_ADDR(ddr2, regi_ddr2_ctrl, rw_phy_ctrl), $r0
move.d REG_STATE(ddr2, rw_phy_ctrl, rst, yes) | \
Expand All @@ -52,6 +62,10 @@ do_cmd:
lslq 16, $r1
or.d $r3, $r1
move.d $r1, [$r0]
; 2. Wait 200us
move.d 10000, $r4
1: bne 1b
subq 1, $r4
cmp.d sdram_commands_end, $r2
blo command_loop
nop
Expand All @@ -63,7 +77,7 @@ do_cmd:

; Set latency
move.d REG_ADDR(ddr2, regi_ddr2_ctrl, rw_latency), $r0
move.d 0x13, $r1
move.d CONFIG_ETRAX_DDR2_LATENCY, $r1
move.d $r1, [$r0]

; Set configuration
Expand Down
2 changes: 2 additions & 0 deletions trunk/arch/cris/arch-v32/mach-a3/hw_settings.S
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
; Register values
.dword REG_ADDR(ddr2, regi_ddr2_ctrl, rw_cfg)
.dword CONFIG_ETRAX_DDR2_CONFIG
.dword REG_ADDR(ddr2, regi_ddr2_ctrl, rw_latency)
.dword CONFIG_ETRAX_DDR2_LATENCY
.dword REG_ADDR(ddr2, regi_ddr2_ctrl, rw_timing)
.dword CONFIG_ETRAX_DDR2_TIMING
.dword CONFIG_ETRAX_DDR2_MRS
Expand Down

0 comments on commit da535b5

Please sign in to comment.