mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
ARM: mvebu: a38x: move sys_env_device_rev_get
Move sys_env_device_rev_get() from the ddr training code to sys_env_lib.c (which currently resides with the serdes code). This brings sys_env_device_rev_get() into line with sys_env_device_id_get() and sys_env_model_get(). Signed-off-by: Chris Packham <judge.packham@gmail.com> Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
e6fce12d14
commit
c4195d5553
3 changed files with 24 additions and 27 deletions
|
@ -107,30 +107,6 @@ static int ddr3_hws_tune_training_params(u8 dev_num);
|
|||
/* A39x revisions */
|
||||
#define MV_88F69XX_Z1_ID 0x2
|
||||
|
||||
/*
|
||||
* sys_env_device_rev_get - Get Marvell controller device revision number
|
||||
*
|
||||
* DESCRIPTION:
|
||||
* This function returns 8bit describing the device revision as defined
|
||||
* Revision ID Register.
|
||||
*
|
||||
* INPUT:
|
||||
* None.
|
||||
*
|
||||
* OUTPUT:
|
||||
* None.
|
||||
*
|
||||
* RETURN:
|
||||
* 8bit desscribing Marvell controller revision number
|
||||
*/
|
||||
u8 sys_env_device_rev_get(void)
|
||||
{
|
||||
u32 value;
|
||||
|
||||
value = reg_read(DEV_VERSION_ID_REG);
|
||||
return (value & (REVISON_ID_MASK)) >> REVISON_ID_OFFS;
|
||||
}
|
||||
|
||||
/*
|
||||
* sys_env_dlb_config_ptr_get
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue