aboutsummaryrefslogtreecommitdiff
path: root/external/common/arch_flash_common.c
blob: 6bce7e1ba4d8f98d0d1c8aca101ef23a1431af53 (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
/* Copyright 2015 IBM Corp.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * 	http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#include <stdlib.h>

#include <libflash/blocklevel.h>

#include "arch_flash.h"

/* Default implementations */

/*
 * This just assumes that an erase from zero to total size is
 * 'correct'.
 * An erase from zero to total size is the correct approach for
 * powerpc and x86. ARM has it own function which also includes a call
 * to the flash driver.
 */
int __attribute__((weak)) arch_flash_erase_chip(struct blocklevel_device *bl)
{
	int rc;
	uint64_t total_size;

	rc = blocklevel_get_info(bl, NULL, &total_size, NULL);
	if (rc)
		return rc;

	return blocklevel_erase(bl, 0, total_size);
}

int __attribute__((weak,const)) arch_flash_4b_mode(struct blocklevel_device *bl, int set_4b)
{
	(void)bl;
	(void)set_4b;
	return -1;
}

enum flash_access __attribute__((weak,const)) arch_flash_access(struct blocklevel_device *bl, enum flash_access access)
{
	(void)bl;
	(void)access;
	return ACCESS_INVAL;
}

int __attribute__((weak,const)) arch_flash_set_wrprotect(struct blocklevel_device *bl, int set)
{
	(void)bl;
	(void)set;
	return -1;
}