summaryrefslogtreecommitdiff
path: root/board/stx/stxssa/ddr.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2015-09-02 10:40:30 +0900
committerTom Rini <trini@konsulko.com>2015-09-02 11:33:19 -0400
commit2ec69b881c762af44e007be5f72fcc8e347d0e68 (patch)
treee1701f9ff6a38f5c997db243ff024a37960f5267 /board/stx/stxssa/ddr.c
parent972f5320dae1d69b38cd06c6c2a23da8ae5a654a (diff)
downloadu-boot-imx-2ec69b881c762af44e007be5f72fcc8e347d0e68.zip
u-boot-imx-2ec69b881c762af44e007be5f72fcc8e347d0e68.tar.gz
u-boot-imx-2ec69b881c762af44e007be5f72fcc8e347d0e68.tar.bz2
powerpc: mpc85xx: remove stxgp3, stxssa support
These have not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Dan Malek <dan@embeddedalley.com>
Diffstat (limited to 'board/stx/stxssa/ddr.c')
-rw-r--r--board/stx/stxssa/ddr.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/board/stx/stxssa/ddr.c b/board/stx/stxssa/ddr.c
deleted file mode 100644
index 1ccd4c5..0000000
--- a/board/stx/stxssa/ddr.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright 2008 Freescale Semiconductor, Inc.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * Version 2 as published by the Free Software Foundation.
- */
-
-#include <common.h>
-#include <i2c.h>
-
-#include <fsl_ddr_sdram.h>
-#include <fsl_ddr_dimm_params.h>
-
-void fsl_ddr_board_options(memctl_options_t *popts,
- dimm_params_t *pdimm,
- unsigned int ctrl_num)
-{
- /*
- * Factors to consider for CPO:
- * - frequency
- * - ddr1 vs. ddr2
- */
- popts->cpo_override = 0;
-
- /*
- * Factors to consider for write data delay:
- * - number of DIMMs
- *
- * 1 = 1/4 clock delay
- * 2 = 1/2 clock delay
- * 3 = 3/4 clock delay
- * 4 = 1 clock delay
- * 5 = 5/4 clock delay
- * 6 = 3/2 clock delay
- */
- popts->write_data_delay = 3;
-
- /* 2T timing enable */
- popts->twot_en = 1;
-
- /*
- * Factors to consider for half-strength driver enable:
- * - number of DIMMs installed
- */
- popts->half_strength_driver_enable = 0;
-}