summaryrefslogtreecommitdiff
path: root/common/env_storage.c
blob: 5e8fed9f2ea86b54e7888a9e5906abea21352a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * (C) Copyright 2000-2010
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 *
 * (C) Copyright 2008
 * Stuart Wood, Lab X Technologies <stuart.wood@labxtechnologies.com>
 *
 * (C) Copyright 2004
 * Jian Zhang, Texas Instruments, jzhang@ti.com.
 *
 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
 * Andreas Heppel <aheppel@sysgo.de>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <command.h>
#include <environment.h>
#include <linux/stddef.h>
#include <malloc.h>
#include <search.h>
#include <errno.h>


#ifdef CONFIG_STORE_COMPATIBLE
#include <emmc_partitions.h>
#include <partition_table.h>

#ifdef ENV_IS_EMBEDDED
env_t *env_ptr = &environment;
#else /* ! ENV_IS_EMBEDDED */
env_t *env_ptr;
#endif /* ENV_IS_EMBEDDED */
DECLARE_GLOBAL_DATA_PTR;

char *env_name_spec = "aml-storage";

/* env_init */
extern int amlnand_env_int(void);
extern int mmc_env_init(void);
int env_init(void)
{
	/* use default */
	gd->env_addr	= (ulong)&default_environment[0];
	gd->env_valid	= 1;

	return 0;
}

/* saveenv */
#ifdef CONFIG_CMD_SAVEENV
extern int amlnand_saveenv(void);
extern int mmc_saveenv(void);
int saveenv(void)
{
	int ret;

	if (EMMC_BOOT_FLAG == device_boot_flag) {
		ret = mmc_saveenv();
#if defined(CONFIG_AML_NAND) || defined(CONFIG_AML_MTD)
	} else if (NAND_BOOT_FLAG == device_boot_flag) {
		ret = amlnand_saveenv();
#endif
	} else {
		printf("%s() %d: device_boot_flag %d not exsit!\n",
			__func__, __LINE__, device_boot_flag);
		ret = -1;
	}
	return ret;
}
#endif /* CONFIG_CMD_SAVEENV */


/* env_relocate_spec */
extern void amlnand_env_relocate_spec(void);
extern void mmc_env_relocate_spec(void);
void env_relocate_spec(void)
{
	if (EMMC_BOOT_FLAG == device_boot_flag) {
		mmc_env_relocate_spec();
#if defined(CONFIG_AML_NAND) || defined(CONFIG_AML_MTD)
	} else if (NAND_BOOT_FLAG == device_boot_flag) {
		amlnand_env_relocate_spec();
#endif
	} else {
		printf("%s() %d: device_boot_flag %d not exsit!\n",
			__func__, __LINE__, device_boot_flag);
	}
	return;
}


#endif /* CONFIG_STORE_COMPATIBLE */