remove nand_controller->register_callbacks
[openocd.git] / src / flash / s3c24xx_nand.c
1 /***************************************************************************
2 * Copyright (C) 2007, 2008 by Ben Dooks *
3 * ben@fluff.org *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21 /*
22 * S3C24XX Series OpenOCD NAND Flash controller support.
23 *
24 * Many thanks to Simtec Electronics for sponsoring this work.
25 */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "s3c24xx_nand.h"
32
33
34 S3C24XX_DEVICE_COMMAND()
35 {
36 struct s3c24xx_nand_controller *s3c24xx_info;
37
38 s3c24xx_info = malloc(sizeof(struct s3c24xx_nand_controller));
39 if (s3c24xx_info == NULL) {
40 LOG_ERROR("no memory for nand controller\n");
41 return -ENOMEM;
42 }
43
44 nand->controller_priv = s3c24xx_info;
45
46 s3c24xx_info->target = get_target(CMD_ARGV[1]);
47 if (s3c24xx_info->target == NULL) {
48 LOG_ERROR("target '%s' not defined", CMD_ARGV[1]);
49 return ERROR_COMMAND_SYNTAX_ERROR;
50 }
51
52 return ERROR_OK;
53 }
54
55 int s3c24xx_reset(struct nand_device *nand)
56 {
57 struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
58 struct target *target = s3c24xx_info->target;
59
60 if (target->state != TARGET_HALTED) {
61 LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
62 return ERROR_NAND_OPERATION_FAILED;
63 }
64
65 target_write_u32(target, s3c24xx_info->cmd, 0xff);
66
67 return ERROR_OK;
68 }
69
70 int s3c24xx_command(struct nand_device *nand, uint8_t command)
71 {
72 struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
73 struct target *target = s3c24xx_info->target;
74
75 if (target->state != TARGET_HALTED) {
76 LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
77 return ERROR_NAND_OPERATION_FAILED;
78 }
79
80 target_write_u16(target, s3c24xx_info->cmd, command);
81 return ERROR_OK;
82 }
83
84
85 int s3c24xx_address(struct nand_device *nand, uint8_t address)
86 {
87 struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
88 struct target *target = s3c24xx_info->target;
89
90 if (target->state != TARGET_HALTED) {
91 LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
92 return ERROR_NAND_OPERATION_FAILED;
93 }
94
95 target_write_u16(target, s3c24xx_info->addr, address);
96 return ERROR_OK;
97 }
98
99 int s3c24xx_write_data(struct nand_device *nand, uint16_t data)
100 {
101 struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
102 struct target *target = s3c24xx_info->target;
103
104 if (target->state != TARGET_HALTED) {
105 LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
106 return ERROR_NAND_OPERATION_FAILED;
107 }
108
109 target_write_u8(target, s3c24xx_info->data, data);
110 return ERROR_OK;
111 }
112
113 int s3c24xx_read_data(struct nand_device *nand, void *data)
114 {
115 struct s3c24xx_nand_controller *s3c24xx_info = nand->controller_priv;
116 struct target *target = s3c24xx_info->target;
117
118 if (target->state != TARGET_HALTED) {
119 LOG_ERROR("target must be halted to use S3C24XX NAND flash controller");
120 return ERROR_NAND_OPERATION_FAILED;
121 }
122
123 target_read_u8(target, s3c24xx_info->data, data);
124 return ERROR_OK;
125 }
126
127 int s3c24xx_controller_ready(struct nand_device *nand, int timeout)
128 {
129 return 1;
130 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)