diff options
author | Sonic Zhang <sonic.zhang@analog.com> | 2008-01-27 03:32:31 -0500 |
---|---|---|
committer | Bryan Wu <bryan.wu@analog.com> | 2008-01-27 03:32:31 -0500 |
commit | 971d5bc4e5c75bfc4466deaff09839cd6f918eca (patch) | |
tree | 1a3259e1c00c519e71e0f0842de3ec257781482c /arch/blackfin/Kconfig | |
parent | b03b08ba9c7235861adf4dde712dade0bb756fe0 (diff) |
[Blackfin] arch: Fix bug to Enable bf548 to Re-program Clocks while Kernel boots.
Reprogram DDR EBIU register properly for bf548.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'arch/blackfin/Kconfig')
-rw-r--r-- | arch/blackfin/Kconfig | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig index 5ebcfd226ed8..1364dcaccc18 100644 --- a/arch/blackfin/Kconfig +++ b/arch/blackfin/Kconfig | |||
@@ -317,7 +317,7 @@ config VCO_MULT | |||
317 | range 1 64 | 317 | range 1 64 |
318 | default "22" if BFIN533_EZKIT | 318 | default "22" if BFIN533_EZKIT |
319 | default "45" if BFIN533_STAMP | 319 | default "45" if BFIN533_STAMP |
320 | default "20" if (BFIN537_STAMP || BFIN527_EZKIT) | 320 | default "20" if (BFIN537_STAMP || BFIN527_EZKIT || BFIN548_EZKIT) |
321 | default "22" if BFIN533_BLUETECHNIX_CM | 321 | default "22" if BFIN533_BLUETECHNIX_CM |
322 | default "20" if BFIN537_BLUETECHNIX_CM | 322 | default "20" if BFIN537_BLUETECHNIX_CM |
323 | default "20" if BFIN561_BLUETECHNIX_CM | 323 | default "20" if BFIN561_BLUETECHNIX_CM |
@@ -354,7 +354,7 @@ config SCLK_DIV | |||
354 | range 1 15 | 354 | range 1 15 |
355 | default 5 if BFIN533_EZKIT | 355 | default 5 if BFIN533_EZKIT |
356 | default 5 if BFIN533_STAMP | 356 | default 5 if BFIN533_STAMP |
357 | default 4 if (BFIN537_STAMP || BFIN527_EZKIT) | 357 | default 4 if (BFIN537_STAMP || BFIN527_EZKIT || BFIN548_EZKIT) |
358 | default 5 if BFIN533_BLUETECHNIX_CM | 358 | default 5 if BFIN533_BLUETECHNIX_CM |
359 | default 4 if BFIN537_BLUETECHNIX_CM | 359 | default 4 if BFIN537_BLUETECHNIX_CM |
360 | default 4 if BFIN561_BLUETECHNIX_CM | 360 | default 4 if BFIN561_BLUETECHNIX_CM |
@@ -409,6 +409,7 @@ config MEM_SIZE | |||
409 | default 32 if BFIN533_EZKIT | 409 | default 32 if BFIN533_EZKIT |
410 | default 64 if BFIN527_EZKIT | 410 | default 64 if BFIN527_EZKIT |
411 | default 64 if BFIN537_STAMP | 411 | default 64 if BFIN537_STAMP |
412 | default 64 if BFIN548_EZKIT | ||
412 | default 64 if BFIN561_EZKIT | 413 | default 64 if BFIN561_EZKIT |
413 | default 128 if BFIN533_STAMP | 414 | default 128 if BFIN533_STAMP |
414 | default 64 if PNAV10 | 415 | default 64 if PNAV10 |
@@ -416,6 +417,7 @@ config MEM_SIZE | |||
416 | 417 | ||
417 | config MEM_ADD_WIDTH | 418 | config MEM_ADD_WIDTH |
418 | int "SDRAM Memory Address Width" | 419 | int "SDRAM Memory Address Width" |
420 | depends on (!BF54x) | ||
419 | default 9 if BFIN533_EZKIT | 421 | default 9 if BFIN533_EZKIT |
420 | default 9 if BFIN561_EZKIT | 422 | default 9 if BFIN561_EZKIT |
421 | default 9 if H8606_HVSISTEMAS | 423 | default 9 if H8606_HVSISTEMAS |
@@ -424,6 +426,19 @@ config MEM_ADD_WIDTH | |||
424 | default 11 if BFIN533_STAMP | 426 | default 11 if BFIN533_STAMP |
425 | default 10 if PNAV10 | 427 | default 10 if PNAV10 |
426 | 428 | ||
429 | |||
430 | choice | ||
431 | prompt "DDR SDRAM Chip Type" | ||
432 | depends on BFIN548_EZKIT | ||
433 | default MEM_MT46V32M16_5B | ||
434 | |||
435 | config MEM_MT46V32M16_6T | ||
436 | bool "MT46V32M16_6T" | ||
437 | |||
438 | config MEM_MT46V32M16_5B | ||
439 | bool "MT46V32M16_5B" | ||
440 | endchoice | ||
441 | |||
427 | config ENET_FLASH_PIN | 442 | config ENET_FLASH_PIN |
428 | int "PF port/pin used for flash and ethernet sharing" | 443 | int "PF port/pin used for flash and ethernet sharing" |
429 | depends on (BFIN533_STAMP) | 444 | depends on (BFIN533_STAMP) |