1
2
3
7
8
13
14
15
16
17
18
19
20
21
22
23
24
25
26
30
31
32
33
34
35
36
37
38
39
40
41
42
46
47
48
49
50
51
52
53
54
55
56
57
61
62
63
64
65
66
67
68
69
70
71
75
76
77
78
79
80
81
82
83
84
85
89
90
91
92
93
94
95
96
97
98
99
103
104
105
106
/* ... */
/* ... */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "s3c24xx.h"
S3C24XX_DEVICE_COMMAND()
{
*info = NULL;
struct s3c24xx_nand_controller *s3c24xx_info;
s3c24xx_info = malloc(sizeof(struct s3c24xx_nand_controller));
if (!s3c24xx_info) {
LOG_ERROR("no memory for nand controller");
return -ENOMEM;
}if (!s3c24xx_info) { ... }
nand->controller_priv = s3c24xx_info;
*info = s3c24xx_info;
return ERROR_OK;
}{ ... }
int s3c24xx_reset(struct nand_device *nand)
{
struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
struct target *target = nand->target;
if (target->state != TARGET_HALTED) {
LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
return ERROR_NAND_OPERATION_FAILED;
}if (target->state != TARGET_HALTED) { ... }
target_write_u32(target, s3c24xx_info->cmd, 0xff);
return ERROR_OK;
}{ ... }
int s3c24xx_command(struct nand_device *nand, uint8_t command)
{
struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
struct target *target = nand->target;
if (target->state != TARGET_HALTED) {
LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
return ERROR_NAND_OPERATION_FAILED;
}if (target->state != TARGET_HALTED) { ... }
target_write_u16(target, s3c24xx_info->cmd, command);
return ERROR_OK;
}{ ... }
int s3c24xx_address(struct nand_device *nand, uint8_t address)
{
struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
struct target *target = nand->target;
if (target->state != TARGET_HALTED) {
LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
return ERROR_NAND_OPERATION_FAILED;
}if (target->state != TARGET_HALTED) { ... }
target_write_u16(target, s3c24xx_info->addr, address);
return ERROR_OK;
}{ ... }
int s3c24xx_write_data(struct nand_device *nand, uint16_t data)
{
struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
struct target *target = nand->target;
if (target->state != TARGET_HALTED) {
LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
return ERROR_NAND_OPERATION_FAILED;
}if (target->state != TARGET_HALTED) { ... }
target_write_u8(target, s3c24xx_info->data, data);
return ERROR_OK;
}{ ... }
int s3c24xx_read_data(struct nand_device *nand, void *data)
{
struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
struct target *target = nand->target;
if (target->state != TARGET_HALTED) {
LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
return ERROR_NAND_OPERATION_FAILED;
}if (target->state != TARGET_HALTED) { ... }
target_read_u8(target, s3c24xx_info->data, data);
return ERROR_OK;
}{ ... }