]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/powerpc/kernel/rtas_flash.c
powerpc/kexec: Fix kexec when using VMX optimised memcpy
[mirror_ubuntu-kernels.git] / arch / powerpc / kernel / rtas_flash.c
CommitLineData
1da177e4
LT
1/*
2 * c 2001 PPC 64 Team, IBM Corp
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
188917e1 9 * /proc/powerpc/rtas/firmware_flash interface
1da177e4
LT
10 *
11 * This file implements a firmware_flash interface to pump a firmware
12 * image into the kernel. At reboot time rtas_restart() will see the
13 * firmware image and flash it as it reboots (see rtas.c).
14 */
15
16#include <linux/module.h>
17#include <linux/init.h>
5a0e3ad6 18#include <linux/slab.h>
1da177e4 19#include <linux/proc_fs.h>
c5f41752 20#include <linux/reboot.h>
1da177e4
LT
21#include <asm/delay.h>
22#include <asm/uaccess.h>
23#include <asm/rtas.h>
24
25#define MODULE_VERS "1.0"
26#define MODULE_NAME "rtas_flash"
27
28#define FIRMWARE_FLASH_NAME "firmware_flash"
29#define FIRMWARE_UPDATE_NAME "firmware_update"
30#define MANAGE_FLASH_NAME "manage_flash"
31#define VALIDATE_FLASH_NAME "validate_flash"
32
33/* General RTAS Status Codes */
34#define RTAS_RC_SUCCESS 0
35#define RTAS_RC_HW_ERR -1
36#define RTAS_RC_BUSY -2
37
38/* Flash image status values */
39#define FLASH_AUTH -9002 /* RTAS Not Service Authority Partition */
40#define FLASH_NO_OP -1099 /* No operation initiated by user */
41#define FLASH_IMG_SHORT -1005 /* Flash image shorter than expected */
42#define FLASH_IMG_BAD_LEN -1004 /* Bad length value in flash list block */
43#define FLASH_IMG_NULL_DATA -1003 /* Bad data value in flash list block */
44#define FLASH_IMG_READY 0 /* Firmware img ready for flash on reboot */
45
46/* Manage image status values */
47#define MANAGE_AUTH -9002 /* RTAS Not Service Authority Partition */
48#define MANAGE_ACTIVE_ERR -9001 /* RTAS Cannot Overwrite Active Img */
49#define MANAGE_NO_OP -1099 /* No operation initiated by user */
50#define MANAGE_PARAM_ERR -3 /* RTAS Parameter Error */
51#define MANAGE_HW_ERR -1 /* RTAS Hardware Error */
52
53/* Validate image status values */
54#define VALIDATE_AUTH -9002 /* RTAS Not Service Authority Partition */
55#define VALIDATE_NO_OP -1099 /* No operation initiated by the user */
56#define VALIDATE_INCOMPLETE -1002 /* User copied < VALIDATE_BUF_SIZE */
57#define VALIDATE_READY -1001 /* Firmware image ready for validation */
58#define VALIDATE_PARAM_ERR -3 /* RTAS Parameter Error */
59#define VALIDATE_HW_ERR -1 /* RTAS Hardware Error */
f51005d7
VH
60
61/* ibm,validate-flash-image update result tokens */
62#define VALIDATE_TMP_UPDATE 0 /* T side will be updated */
63#define VALIDATE_FLASH_AUTH 1 /* Partition does not have authority */
64#define VALIDATE_INVALID_IMG 2 /* Candidate image is not valid */
65#define VALIDATE_CUR_UNKNOWN 3 /* Current fixpack level is unknown */
66/*
67 * Current T side will be committed to P side before being replace with new
68 * image, and the new image is downlevel from current image
69 */
70#define VALIDATE_TMP_COMMIT_DL 4
71/*
72 * Current T side will be committed to P side before being replaced with new
73 * image
74 */
75#define VALIDATE_TMP_COMMIT 5
76/*
77 * T side will be updated with a downlevel image
78 */
79#define VALIDATE_TMP_UPDATE_DL 6
fd2d37c8
VH
80/*
81 * The candidate image's release date is later than the system's firmware
82 * service entitlement date - service warranty period has expired
83 */
84#define VALIDATE_OUT_OF_WRNTY 7
1da177e4
LT
85
86/* ibm,manage-flash-image operation tokens */
87#define RTAS_REJECT_TMP_IMG 0
88#define RTAS_COMMIT_TMP_IMG 1
89
90/* Array sizes */
91#define VALIDATE_BUF_SIZE 4096
92#define RTAS_MSG_MAXLEN 64
93
ae883cab
JR
94/* Quirk - RTAS requires 4k list length and block size */
95#define RTAS_BLKLIST_LENGTH 4096
96#define RTAS_BLK_SIZE 4096
97
f4fcbbe9
PM
98struct flash_block {
99 char *data;
100 unsigned long length;
101};
102
103/* This struct is very similar but not identical to
104 * that needed by the rtas flash update.
105 * All we need to do for rtas is rewrite num_blocks
106 * into a version/length and translate the pointers
107 * to absolute.
108 */
ae883cab 109#define FLASH_BLOCKS_PER_NODE ((RTAS_BLKLIST_LENGTH - 16) / sizeof(struct flash_block))
f4fcbbe9
PM
110struct flash_block_list {
111 unsigned long num_blocks;
112 struct flash_block_list *next;
113 struct flash_block blocks[FLASH_BLOCKS_PER_NODE];
114};
f4fcbbe9 115
bd2b64a1 116static struct flash_block_list *rtas_firmware_flash_list;
f4fcbbe9 117
ae883cab 118/* Use slab cache to guarantee 4k alignment */
e18b890b 119static struct kmem_cache *flash_block_cache = NULL;
ae883cab 120
f4fcbbe9
PM
121#define FLASH_BLOCK_LIST_VERSION (1UL)
122
e8eeded3
DH
123/*
124 * Local copy of the flash block list.
125 *
126 * The rtas_firmware_flash_list varable will be
bd2b64a1 127 * set once the data is fully read.
1da177e4
LT
128 *
129 * For convenience as we build the list we use virtual addrs,
130 * we do not fill in the version number, and the length field
131 * is treated as the number of entries currently in the block
bd2b64a1
MM
132 * (i.e. not a byte count). This is all fixed when calling
133 * the flash routine.
1da177e4
LT
134 */
135
136/* Status int must be first member of struct */
137struct rtas_update_flash_t
138{
139 int status; /* Flash update status */
140 struct flash_block_list *flist; /* Local copy of flash block list */
141};
142
143/* Status int must be first member of struct */
144struct rtas_manage_flash_t
145{
146 int status; /* Returned status */
1da177e4
LT
147};
148
149/* Status int must be first member of struct */
150struct rtas_validate_flash_t
151{
152 int status; /* Returned status */
e8eeded3 153 char *buf; /* Candidate image buffer */
1da177e4
LT
154 unsigned int buf_size; /* Size of image buf */
155 unsigned int update_results; /* Update results token */
156};
157
e8eeded3
DH
158static struct rtas_update_flash_t rtas_update_flash_data;
159static struct rtas_manage_flash_t rtas_manage_flash_data;
160static struct rtas_validate_flash_t rtas_validate_flash_data;
161static DEFINE_MUTEX(rtas_update_flash_mutex);
162static DEFINE_MUTEX(rtas_manage_flash_mutex);
163static DEFINE_MUTEX(rtas_validate_flash_mutex);
1da177e4
LT
164
165/* Do simple sanity checks on the flash image. */
166static int flash_list_valid(struct flash_block_list *flist)
167{
168 struct flash_block_list *f;
169 int i;
170 unsigned long block_size, image_size;
171
172 /* Paranoid self test here. We also collect the image size. */
173 image_size = 0;
174 for (f = flist; f; f = f->next) {
175 for (i = 0; i < f->num_blocks; i++) {
176 if (f->blocks[i].data == NULL) {
177 return FLASH_IMG_NULL_DATA;
178 }
179 block_size = f->blocks[i].length;
ae883cab 180 if (block_size <= 0 || block_size > RTAS_BLK_SIZE) {
1da177e4
LT
181 return FLASH_IMG_BAD_LEN;
182 }
183 image_size += block_size;
184 }
185 }
186
187 if (image_size < (256 << 10)) {
188 if (image_size < 2)
189 return FLASH_NO_OP;
190 }
191
192 printk(KERN_INFO "FLASH: flash image with %ld bytes stored for hardware flash on reboot\n", image_size);
193
194 return FLASH_IMG_READY;
195}
196
197static void free_flash_list(struct flash_block_list *f)
198{
199 struct flash_block_list *next;
200 int i;
201
202 while (f) {
203 for (i = 0; i < f->num_blocks; i++)
ae883cab 204 kmem_cache_free(flash_block_cache, f->blocks[i].data);
1da177e4 205 next = f->next;
ae883cab 206 kmem_cache_free(flash_block_cache, f);
1da177e4
LT
207 f = next;
208 }
209}
210
211static int rtas_flash_release(struct inode *inode, struct file *file)
212{
e8eeded3
DH
213 struct rtas_update_flash_t *const uf = &rtas_update_flash_data;
214
215 mutex_lock(&rtas_update_flash_mutex);
216
1da177e4
LT
217 if (uf->flist) {
218 /* File was opened in write mode for a new flash attempt */
219 /* Clear saved list */
bd2b64a1
MM
220 if (rtas_firmware_flash_list) {
221 free_flash_list(rtas_firmware_flash_list);
222 rtas_firmware_flash_list = NULL;
1da177e4
LT
223 }
224
225 if (uf->status != FLASH_AUTH)
226 uf->status = flash_list_valid(uf->flist);
227
228 if (uf->status == FLASH_IMG_READY)
bd2b64a1 229 rtas_firmware_flash_list = uf->flist;
1da177e4
LT
230 else
231 free_flash_list(uf->flist);
232
233 uf->flist = NULL;
234 }
235
e8eeded3 236 mutex_unlock(&rtas_update_flash_mutex);
1da177e4
LT
237 return 0;
238}
239
e8eeded3 240static size_t get_flash_status_msg(int status, char *buf)
1da177e4 241{
e8eeded3
DH
242 const char *msg;
243 size_t len;
1da177e4
LT
244
245 switch (status) {
246 case FLASH_AUTH:
247 msg = "error: this partition does not have service authority\n";
248 break;
249 case FLASH_NO_OP:
250 msg = "info: no firmware image for flash\n";
251 break;
252 case FLASH_IMG_SHORT:
253 msg = "error: flash image short\n";
254 break;
255 case FLASH_IMG_BAD_LEN:
256 msg = "error: internal error bad length\n";
257 break;
258 case FLASH_IMG_NULL_DATA:
259 msg = "error: internal error null data\n";
260 break;
261 case FLASH_IMG_READY:
262 msg = "ready: firmware image ready for flash on reboot\n";
263 break;
264 default:
e8eeded3
DH
265 return sprintf(buf, "error: unexpected status value %d\n",
266 status);
1da177e4
LT
267 }
268
e8eeded3
DH
269 len = strlen(msg);
270 memcpy(buf, msg, len + 1);
271 return len;
1da177e4
LT
272}
273
274/* Reading the proc file will show status (not the firmware contents) */
e8eeded3
DH
275static ssize_t rtas_flash_read_msg(struct file *file, char __user *buf,
276 size_t count, loff_t *ppos)
1da177e4 277{
e8eeded3 278 struct rtas_update_flash_t *const uf = &rtas_update_flash_data;
1da177e4 279 char msg[RTAS_MSG_MAXLEN];
e8eeded3
DH
280 size_t len;
281 int status;
1da177e4 282
e8eeded3
DH
283 mutex_lock(&rtas_update_flash_mutex);
284 status = uf->status;
285 mutex_unlock(&rtas_update_flash_mutex);
1da177e4 286
e8eeded3
DH
287 /* Read as text message */
288 len = get_flash_status_msg(status, msg);
289 return simple_read_from_buffer(buf, count, ppos, msg, len);
290}
291
292static ssize_t rtas_flash_read_num(struct file *file, char __user *buf,
293 size_t count, loff_t *ppos)
294{
295 struct rtas_update_flash_t *const uf = &rtas_update_flash_data;
296 char msg[RTAS_MSG_MAXLEN];
297 int status;
1da177e4 298
e8eeded3
DH
299 mutex_lock(&rtas_update_flash_mutex);
300 status = uf->status;
301 mutex_unlock(&rtas_update_flash_mutex);
302
303 /* Read as number */
304 sprintf(msg, "%d\n", status);
4c4a5cf6 305 return simple_read_from_buffer(buf, count, ppos, msg, strlen(msg));
1da177e4
LT
306}
307
308/* We could be much more efficient here. But to keep this function
309 * simple we allocate a page to the block list no matter how small the
310 * count is. If the system is low on memory it will be just as well
311 * that we fail....
312 */
efa54579 313static ssize_t rtas_flash_write(struct file *file, const char __user *buffer,
1da177e4
LT
314 size_t count, loff_t *off)
315{
e8eeded3 316 struct rtas_update_flash_t *const uf = &rtas_update_flash_data;
1da177e4 317 char *p;
e8eeded3 318 int next_free, rc;
1da177e4
LT
319 struct flash_block_list *fl;
320
e8eeded3 321 mutex_lock(&rtas_update_flash_mutex);
1da177e4
LT
322
323 if (uf->status == FLASH_AUTH || count == 0)
e8eeded3 324 goto out; /* discard data */
1da177e4
LT
325
326 /* In the case that the image is not ready for flashing, the memory
327 * allocated for the block list will be freed upon the release of the
328 * proc file
329 */
330 if (uf->flist == NULL) {
fb4696c3 331 uf->flist = kmem_cache_zalloc(flash_block_cache, GFP_KERNEL);
1da177e4 332 if (!uf->flist)
e8eeded3 333 goto nomem;
1da177e4
LT
334 }
335
336 fl = uf->flist;
337 while (fl->next)
338 fl = fl->next; /* seek to last block_list for append */
339 next_free = fl->num_blocks;
340 if (next_free == FLASH_BLOCKS_PER_NODE) {
341 /* Need to allocate another block_list */
fb4696c3 342 fl->next = kmem_cache_zalloc(flash_block_cache, GFP_KERNEL);
1da177e4 343 if (!fl->next)
e8eeded3 344 goto nomem;
1da177e4
LT
345 fl = fl->next;
346 next_free = 0;
347 }
348
ae883cab
JR
349 if (count > RTAS_BLK_SIZE)
350 count = RTAS_BLK_SIZE;
fb4696c3 351 p = kmem_cache_zalloc(flash_block_cache, GFP_KERNEL);
1da177e4 352 if (!p)
e8eeded3 353 goto nomem;
1da177e4
LT
354
355 if(copy_from_user(p, buffer, count)) {
ae883cab 356 kmem_cache_free(flash_block_cache, p);
e8eeded3
DH
357 rc = -EFAULT;
358 goto error;
1da177e4
LT
359 }
360 fl->blocks[next_free].data = p;
361 fl->blocks[next_free].length = count;
362 fl->num_blocks++;
e8eeded3
DH
363out:
364 mutex_unlock(&rtas_update_flash_mutex);
1da177e4 365 return count;
1da177e4 366
e8eeded3
DH
367nomem:
368 rc = -ENOMEM;
369error:
370 mutex_unlock(&rtas_update_flash_mutex);
371 return rc;
1da177e4
LT
372}
373
e8eeded3
DH
374/*
375 * Flash management routines.
376 */
377static void manage_flash(struct rtas_manage_flash_t *args_buf, unsigned int op)
1da177e4 378{
1da177e4
LT
379 s32 rc;
380
507279db 381 do {
e8eeded3
DH
382 rc = rtas_call(rtas_token("ibm,manage-flash-image"), 1, 1,
383 NULL, op);
507279db 384 } while (rtas_busy_delay(rc));
1da177e4
LT
385
386 args_buf->status = rc;
387}
388
efa54579 389static ssize_t manage_flash_read(struct file *file, char __user *buf,
1da177e4
LT
390 size_t count, loff_t *ppos)
391{
e8eeded3 392 struct rtas_manage_flash_t *const args_buf = &rtas_manage_flash_data;
1da177e4 393 char msg[RTAS_MSG_MAXLEN];
e8eeded3 394 int msglen, status;
1da177e4 395
e8eeded3
DH
396 mutex_lock(&rtas_manage_flash_mutex);
397 status = args_buf->status;
398 mutex_unlock(&rtas_manage_flash_mutex);
1da177e4 399
e8eeded3 400 msglen = sprintf(msg, "%d\n", status);
4c4a5cf6 401 return simple_read_from_buffer(buf, count, ppos, msg, msglen);
1da177e4
LT
402}
403
efa54579 404static ssize_t manage_flash_write(struct file *file, const char __user *buf,
1da177e4
LT
405 size_t count, loff_t *off)
406{
e8eeded3
DH
407 struct rtas_manage_flash_t *const args_buf = &rtas_manage_flash_data;
408 static const char reject_str[] = "0";
409 static const char commit_str[] = "1";
1da177e4 410 char stkbuf[10];
e8eeded3
DH
411 int op, rc;
412
413 mutex_lock(&rtas_manage_flash_mutex);
1da177e4 414
1da177e4 415 if ((args_buf->status == MANAGE_AUTH) || (count == 0))
e8eeded3 416 goto out;
1da177e4
LT
417
418 op = -1;
419 if (buf) {
420 if (count > 9) count = 9;
e8eeded3
DH
421 rc = -EFAULT;
422 if (copy_from_user (stkbuf, buf, count))
423 goto error;
1da177e4
LT
424 if (strncmp(stkbuf, reject_str, strlen(reject_str)) == 0)
425 op = RTAS_REJECT_TMP_IMG;
426 else if (strncmp(stkbuf, commit_str, strlen(commit_str)) == 0)
427 op = RTAS_COMMIT_TMP_IMG;
428 }
429
e8eeded3
DH
430 if (op == -1) { /* buf is empty, or contains invalid string */
431 rc = -EINVAL;
432 goto error;
433 }
1da177e4 434
e8eeded3
DH
435 manage_flash(args_buf, op);
436out:
437 mutex_unlock(&rtas_manage_flash_mutex);
1da177e4 438 return count;
e8eeded3
DH
439
440error:
441 mutex_unlock(&rtas_manage_flash_mutex);
442 return rc;
1da177e4
LT
443}
444
e8eeded3
DH
445/*
446 * Validation routines.
447 */
1da177e4
LT
448static void validate_flash(struct rtas_validate_flash_t *args_buf)
449{
450 int token = rtas_token("ibm,validate-flash-image");
1da177e4
LT
451 int update_results;
452 s32 rc;
453
454 rc = 0;
507279db 455 do {
1da177e4
LT
456 spin_lock(&rtas_data_buf_lock);
457 memcpy(rtas_data_buf, args_buf->buf, VALIDATE_BUF_SIZE);
458 rc = rtas_call(token, 2, 2, &update_results,
459 (u32) __pa(rtas_data_buf), args_buf->buf_size);
460 memcpy(args_buf->buf, rtas_data_buf, VALIDATE_BUF_SIZE);
461 spin_unlock(&rtas_data_buf_lock);
507279db 462 } while (rtas_busy_delay(rc));
1da177e4
LT
463
464 args_buf->status = rc;
465 args_buf->update_results = update_results;
466}
467
468static int get_validate_flash_msg(struct rtas_validate_flash_t *args_buf,
469 char *msg)
470{
471 int n;
472
473 if (args_buf->status >= VALIDATE_TMP_UPDATE) {
474 n = sprintf(msg, "%d\n", args_buf->update_results);
475 if ((args_buf->update_results >= VALIDATE_CUR_UNKNOWN) ||
476 (args_buf->update_results == VALIDATE_TMP_UPDATE))
477 n += sprintf(msg + n, "%s\n", args_buf->buf);
478 } else {
479 n = sprintf(msg, "%d\n", args_buf->status);
480 }
481 return n;
482}
483
efa54579 484static ssize_t validate_flash_read(struct file *file, char __user *buf,
1da177e4
LT
485 size_t count, loff_t *ppos)
486{
e8eeded3
DH
487 struct rtas_validate_flash_t *const args_buf =
488 &rtas_validate_flash_data;
1da177e4
LT
489 char msg[RTAS_MSG_MAXLEN];
490 int msglen;
491
e8eeded3 492 mutex_lock(&rtas_validate_flash_mutex);
1da177e4 493 msglen = get_validate_flash_msg(args_buf, msg);
e8eeded3 494 mutex_unlock(&rtas_validate_flash_mutex);
1da177e4 495
4c4a5cf6 496 return simple_read_from_buffer(buf, count, ppos, msg, msglen);
1da177e4
LT
497}
498
efa54579 499static ssize_t validate_flash_write(struct file *file, const char __user *buf,
1da177e4
LT
500 size_t count, loff_t *off)
501{
e8eeded3
DH
502 struct rtas_validate_flash_t *const args_buf =
503 &rtas_validate_flash_data;
1da177e4
LT
504 int rc;
505
e8eeded3 506 mutex_lock(&rtas_validate_flash_mutex);
1da177e4
LT
507
508 /* We are only interested in the first 4K of the
509 * candidate image */
510 if ((*off >= VALIDATE_BUF_SIZE) ||
511 (args_buf->status == VALIDATE_AUTH)) {
512 *off += count;
e8eeded3 513 mutex_unlock(&rtas_validate_flash_mutex);
1da177e4
LT
514 return count;
515 }
516
517 if (*off + count >= VALIDATE_BUF_SIZE) {
518 count = VALIDATE_BUF_SIZE - *off;
519 args_buf->status = VALIDATE_READY;
520 } else {
521 args_buf->status = VALIDATE_INCOMPLETE;
522 }
523
524 if (!access_ok(VERIFY_READ, buf, count)) {
525 rc = -EFAULT;
526 goto done;
527 }
528 if (copy_from_user(args_buf->buf + *off, buf, count)) {
529 rc = -EFAULT;
530 goto done;
531 }
532
533 *off += count;
534 rc = count;
535done:
e8eeded3 536 mutex_unlock(&rtas_validate_flash_mutex);
1da177e4
LT
537 return rc;
538}
539
540static int validate_flash_release(struct inode *inode, struct file *file)
541{
e8eeded3
DH
542 struct rtas_validate_flash_t *const args_buf =
543 &rtas_validate_flash_data;
1da177e4 544
e8eeded3 545 mutex_lock(&rtas_validate_flash_mutex);
1da177e4
LT
546
547 if (args_buf->status == VALIDATE_READY) {
548 args_buf->buf_size = VALIDATE_BUF_SIZE;
549 validate_flash(args_buf);
550 }
551
e8eeded3 552 mutex_unlock(&rtas_validate_flash_mutex);
1da177e4
LT
553 return 0;
554}
555
e8eeded3
DH
556/*
557 * On-reboot flash update applicator.
558 */
f4fcbbe9
PM
559static void rtas_flash_firmware(int reboot_type)
560{
561 unsigned long image_size;
562 struct flash_block_list *f, *next, *flist;
563 unsigned long rtas_block_list;
564 int i, status, update_token;
565
bd2b64a1 566 if (rtas_firmware_flash_list == NULL)
f4fcbbe9
PM
567 return; /* nothing to do */
568
569 if (reboot_type != SYS_RESTART) {
570 printk(KERN_ALERT "FLASH: firmware flash requires a reboot\n");
571 printk(KERN_ALERT "FLASH: the firmware image will NOT be flashed\n");
572 return;
573 }
574
575 update_token = rtas_token("ibm,update-flash-64-and-reboot");
576 if (update_token == RTAS_UNKNOWN_SERVICE) {
577 printk(KERN_ALERT "FLASH: ibm,update-flash-64-and-reboot "
578 "is not available -- not a service partition?\n");
579 printk(KERN_ALERT "FLASH: firmware will not be flashed\n");
580 return;
581 }
582
df17f56d
RN
583 /*
584 * Just before starting the firmware flash, cancel the event scan work
585 * to avoid any soft lockup issues.
586 */
587 rtas_cancel_event_scan();
588
bd2b64a1
MM
589 /*
590 * NOTE: the "first" block must be under 4GB, so we create
591 * an entry with no data blocks in the reserved buffer in
592 * the kernel data segment.
f4fcbbe9 593 */
bd2b64a1
MM
594 spin_lock(&rtas_data_buf_lock);
595 flist = (struct flash_block_list *)&rtas_data_buf[0];
596 flist->num_blocks = 0;
597 flist->next = rtas_firmware_flash_list;
3d267523 598 rtas_block_list = __pa(flist);
f4fcbbe9
PM
599 if (rtas_block_list >= 4UL*1024*1024*1024) {
600 printk(KERN_ALERT "FLASH: kernel bug...flash list header addr above 4GB\n");
bd2b64a1 601 spin_unlock(&rtas_data_buf_lock);
f4fcbbe9
PM
602 return;
603 }
604
605 printk(KERN_ALERT "FLASH: preparing saved firmware image for flash\n");
606 /* Update the block_list in place. */
bd2b64a1 607 rtas_firmware_flash_list = NULL; /* too hard to backout on error */
f4fcbbe9
PM
608 image_size = 0;
609 for (f = flist; f; f = next) {
610 /* Translate data addrs to absolute */
611 for (i = 0; i < f->num_blocks; i++) {
3d267523 612 f->blocks[i].data = (char *)__pa(f->blocks[i].data);
f4fcbbe9
PM
613 image_size += f->blocks[i].length;
614 }
615 next = f->next;
616 /* Don't translate NULL pointer for last entry */
617 if (f->next)
3d267523 618 f->next = (struct flash_block_list *)__pa(f->next);
f4fcbbe9
PM
619 else
620 f->next = NULL;
621 /* make num_blocks into the version/length field */
622 f->num_blocks = (FLASH_BLOCK_LIST_VERSION << 56) | ((f->num_blocks+1)*16);
623 }
624
625 printk(KERN_ALERT "FLASH: flash image is %ld bytes\n", image_size);
626 printk(KERN_ALERT "FLASH: performing flash and reboot\n");
627 rtas_progress("Flashing \n", 0x0);
628 rtas_progress("Please Wait... ", 0x0);
629 printk(KERN_ALERT "FLASH: this will take several minutes. Do not power off!\n");
630 status = rtas_call(update_token, 1, 1, NULL, rtas_block_list);
631 switch (status) { /* should only get "bad" status */
632 case 0:
633 printk(KERN_ALERT "FLASH: success\n");
634 break;
635 case -1:
636 printk(KERN_ALERT "FLASH: hardware error. Firmware may not be not flashed\n");
637 break;
638 case -3:
639 printk(KERN_ALERT "FLASH: image is corrupt or not correct for this platform. Firmware not flashed\n");
640 break;
641 case -4:
642 printk(KERN_ALERT "FLASH: flash failed when partially complete. System may not reboot\n");
643 break;
644 default:
645 printk(KERN_ALERT "FLASH: unknown flash return code %d\n", status);
646 break;
647 }
bd2b64a1 648 spin_unlock(&rtas_data_buf_lock);
f4fcbbe9
PM
649}
650
e8eeded3
DH
651/*
652 * Manifest of proc files to create
653 */
654struct rtas_flash_file {
655 const char *filename;
656 const char *rtas_call_name;
1da177e4 657 int *status;
e8eeded3 658 const struct file_operations fops;
1da177e4
LT
659};
660
e8eeded3
DH
661static const struct rtas_flash_file rtas_flash_files[] = {
662 {
663 .filename = "powerpc/rtas/" FIRMWARE_FLASH_NAME,
664 .rtas_call_name = "ibm,update-flash-64-and-reboot",
665 .status = &rtas_update_flash_data.status,
666 .fops.read = rtas_flash_read_msg,
667 .fops.write = rtas_flash_write,
668 .fops.release = rtas_flash_release,
669 .fops.llseek = default_llseek,
670 },
671 {
672 .filename = "powerpc/rtas/" FIRMWARE_UPDATE_NAME,
673 .rtas_call_name = "ibm,update-flash-64-and-reboot",
674 .status = &rtas_update_flash_data.status,
675 .fops.read = rtas_flash_read_num,
676 .fops.write = rtas_flash_write,
677 .fops.release = rtas_flash_release,
678 .fops.llseek = default_llseek,
679 },
680 {
681 .filename = "powerpc/rtas/" VALIDATE_FLASH_NAME,
682 .rtas_call_name = "ibm,validate-flash-image",
683 .status = &rtas_validate_flash_data.status,
684 .fops.read = validate_flash_read,
685 .fops.write = validate_flash_write,
686 .fops.release = validate_flash_release,
687 .fops.llseek = default_llseek,
688 },
689 {
690 .filename = "powerpc/rtas/" MANAGE_FLASH_NAME,
691 .rtas_call_name = "ibm,manage-flash-image",
692 .status = &rtas_manage_flash_data.status,
693 .fops.read = manage_flash_read,
694 .fops.write = manage_flash_write,
695 .fops.llseek = default_llseek,
696 }
1da177e4
LT
697};
698
1c21a293 699static int __init rtas_flash_init(void)
1da177e4 700{
e8eeded3 701 int i;
1da177e4
LT
702
703 if (rtas_token("ibm,update-flash-64-and-reboot") ==
704 RTAS_UNKNOWN_SERVICE) {
0e384983 705 pr_info("rtas_flash: no firmware flash support\n");
1da177e4
LT
706 return 1;
707 }
708
e8eeded3
DH
709 rtas_validate_flash_data.buf = kzalloc(VALIDATE_BUF_SIZE, GFP_KERNEL);
710 if (!rtas_validate_flash_data.buf)
711 return -ENOMEM;
1da177e4 712
e8eeded3
DH
713 flash_block_cache = kmem_cache_create("rtas_flash_cache",
714 RTAS_BLK_SIZE, RTAS_BLK_SIZE, 0,
5a148af6 715 NULL);
e8eeded3
DH
716 if (!flash_block_cache) {
717 printk(KERN_ERR "%s: failed to create block cache\n",
718 __func__);
719 goto enomem_buf;
1da177e4
LT
720 }
721
e8eeded3
DH
722 for (i = 0; i < ARRAY_SIZE(rtas_flash_files); i++) {
723 const struct rtas_flash_file *f = &rtas_flash_files[i];
724 int token;
1da177e4 725
e8eeded3
DH
726 if (!proc_create(f->filename, S_IRUSR | S_IWUSR, NULL, &f->fops))
727 goto enomem;
1da177e4 728
e8eeded3
DH
729 /*
730 * This code assumes that the status int is the first member of the
731 * struct
732 */
733 token = rtas_token(f->rtas_call_name);
734 if (token == RTAS_UNKNOWN_SERVICE)
735 *f->status = FLASH_AUTH;
736 else
737 *f->status = FLASH_NO_OP;
738 }
1da177e4 739
f4fcbbe9 740 rtas_flash_term_hook = rtas_flash_firmware;
1da177e4
LT
741 return 0;
742
e8eeded3
DH
743enomem:
744 while (--i >= 0) {
745 const struct rtas_flash_file *f = &rtas_flash_files[i];
746 remove_proc_entry(f->filename, NULL);
747 }
1da177e4 748
e8eeded3
DH
749 kmem_cache_destroy(flash_block_cache);
750enomem_buf:
751 kfree(rtas_validate_flash_data.buf);
752 return -ENOMEM;
1da177e4
LT
753}
754
1c21a293 755static void __exit rtas_flash_cleanup(void)
1da177e4 756{
e8eeded3
DH
757 int i;
758
f4fcbbe9 759 rtas_flash_term_hook = NULL;
ae883cab 760
ad18a364
VH
761 if (rtas_firmware_flash_list) {
762 free_flash_list(rtas_firmware_flash_list);
763 rtas_firmware_flash_list = NULL;
764 }
765
e8eeded3
DH
766 for (i = 0; i < ARRAY_SIZE(rtas_flash_files); i++) {
767 const struct rtas_flash_file *f = &rtas_flash_files[i];
768 remove_proc_entry(f->filename, NULL);
769 }
ae883cab 770
e8eeded3
DH
771 kmem_cache_destroy(flash_block_cache);
772 kfree(rtas_validate_flash_data.buf);
1da177e4
LT
773}
774
775module_init(rtas_flash_init);
776module_exit(rtas_flash_cleanup);
777MODULE_LICENSE("GPL");