Commit ca27381df15c99c7b542f847359a8a4543f24d2a

Authored by Wolfgang Denk
1 parent 8123eee875
Exists in master and in 55 other branches 8qm-imx_v2020.04_5.4.70_2.3.0, emb_lf_v2022.04, emb_lf_v2023.04, imx_v2015.04_4.1.15_1.0.0_ga, pitx_8mp_lf_v2020.04, smarc-8m-android-10.0.0_2.6.0, smarc-8m-android-11.0.0_2.0.0, smarc-8mp-android-11.0.0_2.0.0, smarc-emmc-imx_v2014.04_3.10.53_1.1.0_ga, smarc-emmc-imx_v2014.04_3.14.28_1.0.0_ga, smarc-imx-l5.0.0_1.0.0-ga, smarc-imx6_v2018.03_4.14.98_2.0.0_ga, smarc-imx7_v2017.03_4.9.11_1.0.0_ga, smarc-imx7_v2018.03_4.14.98_2.0.0_ga, smarc-imx_v2014.04_3.14.28_1.0.0_ga, smarc-imx_v2015.04_4.1.15_1.0.0_ga, smarc-imx_v2017.03_4.9.11_1.0.0_ga, smarc-imx_v2017.03_4.9.88_2.0.0_ga, smarc-imx_v2017.03_o8.1.0_1.3.0_8m, smarc-imx_v2018.03_4.14.78_1.0.0_ga, smarc-m6.0.1_2.1.0-ga, smarc-n7.1.2_2.0.0-ga, smarc-rel_imx_4.1.15_2.0.0_ga, smarc_8m-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8m-imx_v2019.04_4.19.35_1.1.0, smarc_8m_00d0-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2019.04_4.19.35_1.1.0, smarc_8mm-imx_v2020.04_5.4.24_2.1.0, smarc_8mp_lf_v2020.04, smarc_8mq-imx_v2020.04_5.4.24_2.1.0, smarc_8mq_lf_v2020.04, ti-u-boot-2015.07, u-boot-2013.01.y, v2013.10, v2013.10-smarct33, v2013.10-smartmen, v2014.01, v2014.04, v2014.04-smarct33, v2014.04-smarct33-emmc, v2014.04-smartmen, v2014.07, v2014.07-smarct33, v2014.07-smartmen, v2015.07-smarct33, v2015.07-smarct33-emmc, v2015.07-smarct4x, v2016.05-dlt, v2016.05-smarct3x, v2016.05-smarct3x-emmc, v2016.05-smarct4x, v2017.01-smarct3x, v2017.01-smarct3x-emmc, v2017.01-smarct4x

Add (some) definitions for the MPC85xx local bus controller

Patch by Murray Jensen, 08 Jul 2005

Showing 2 changed files with 38 additions and 0 deletions Side-by-side Diff

... ... @@ -2,6 +2,9 @@
2 2 Changes since U-Boot 1.1.4:
3 3 ======================================================================
4 4  
  5 +* Add (some) definitions for the MPC85xx local bus controller
  6 + Patch by Murray Jensen, 08 Jul 2005
  7 +
5 8 * Add CPM2 I/O pin functions for MPC85xx processors
6 9 Patch by Murray Jensen, 08 Jul 2005
7 10  
... ... @@ -25,5 +25,40 @@
25 25 #define SCCR_DFBRG10 0x00000002 /* BRGCLK division by 64 */
26 26 #define SCCR_DFBRG11 0x00000003 /* BRGCLK division by 256 */
27 27  
  28 +/*
  29 + * Local Bus Controller - memory controller registers
  30 + */
  31 +#define BRx_V 0x00000001 /* Bank Valid */
  32 +#define BRx_MS_GPCM 0x00000000 /* G.P.C.M. Machine Select */
  33 +#define BRx_MS_SDRAM 0x00000000 /* SDRAM Machine Select */
  34 +#define BRx_MS_UPMA 0x00000080 /* U.P.M.A Machine Select */
  35 +#define BRx_MS_UPMB 0x000000a0 /* U.P.M.B Machine Select */
  36 +#define BRx_MS_UPMC 0x000000c0 /* U.P.M.C Machine Select */
  37 +#define BRx_PS_8 0x00000800 /* 8 bit port size */
  38 +#define BRx_PS_32 0x00001800 /* 32 bit port size */
  39 +#define BRx_BA_MSK 0xffff8000 /* Base Address Mask */
  40 +
  41 +#define ORxG_EAD 0x00000001 /* External addr latch delay */
  42 +#define ORxG_EHTR 0x00000002 /* Extended hold time on read */
  43 +#define ORxG_TRLX 0x00000004 /* Timing relaxed */
  44 +#define ORxG_SETA 0x00000008 /* External address termination */
  45 +#define ORxG_SCY_10_CLK 0x000000a0 /* 10 clock cycles wait states */
  46 +#define ORxG_SCY_15_CLK 0x000000f0 /* 15 clock cycles wait states */
  47 +#define ORxG_XACS 0x00000100 /* Extra addr to CS setup */
  48 +#define ORxG_ACS_DIV2 0x00000600 /* CS is output 1/2 a clock later*/
  49 +#define ORxG_CSNT 0x00000800 /* Chip Select Negation Time */
  50 +
  51 +#define ORxU_BI 0x00000100 /* Burst Inhibit */
  52 +#define ORxU_AM_MSK 0xffff8000 /* Address Mask Mask */
  53 +
  54 +#define MxMR_OP_NORM 0x00000000 /* Normal Operation */
  55 +#define MxMR_DSx_2_CYCL 0x00400000 /* 2 cycle Disable Period */
  56 +#define MxMR_OP_WARR 0x10000000 /* Write to Array */
  57 +#define MxMR_BSEL 0x80000000 /* Bus Select */
  58 +
  59 +/* helpers to convert values into an OR address mask (GPCM mode) */
  60 +#define P2SZ_TO_AM(s) ((~((s) - 1)) & 0xffff8000) /* must be pow of 2 */
  61 +#define MEG_TO_AM(m) P2SZ_TO_AM((m) << 20)
  62 +
28 63 #endif /* __MPC85xx_H__ */