Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * arch/xtensa/platform-iss/setup.c |
| 4 | * |
| 5 | * Platform specific initialization. |
| 6 | * |
| 7 | * Authors: Chris Zankel <chris@zankel.net> |
| 8 | * Joe Taylor <joe@tensilica.com> |
| 9 | * |
| 10 | * Copyright 2001 - 2005 Tensilica Inc. |
Max Filippov | fbe22d2 | 2017-03-13 10:34:36 -0700 | [diff] [blame] | 11 | * Copyright 2017 Cadence Design Systems Inc. |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify it |
| 14 | * under the terms of the GNU General Public License as published by the |
| 15 | * Free Software Foundation; either version 2 of the License, or (at your |
| 16 | * option) any later version. |
| 17 | * |
| 18 | */ |
Max Filippov | fbe22d2 | 2017-03-13 10:34:36 -0700 | [diff] [blame] | 19 | #include <linux/bootmem.h> |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 20 | #include <linux/stddef.h> |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/errno.h> |
| 24 | #include <linux/reboot.h> |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 25 | #include <linux/kdev_t.h> |
| 26 | #include <linux/types.h> |
| 27 | #include <linux/major.h> |
| 28 | #include <linux/blkdev.h> |
| 29 | #include <linux/console.h> |
| 30 | #include <linux/delay.h> |
| 31 | #include <linux/stringify.h> |
| 32 | #include <linux/notifier.h> |
| 33 | |
| 34 | #include <asm/platform.h> |
| 35 | #include <asm/bootparam.h> |
Max Filippov | 3ced973 | 2017-03-13 10:28:33 -0700 | [diff] [blame] | 36 | #include <asm/setup.h> |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 37 | |
Max Filippov | feec273 | 2016-09-20 17:26:48 -0700 | [diff] [blame] | 38 | #include <platform/simcall.h> |
| 39 | |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 40 | |
| 41 | void __init platform_init(bp_tag_t* bootparam) |
| 42 | { |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | void platform_halt(void) |
| 46 | { |
Max Filippov | 2375317 | 2012-09-17 05:44:47 +0400 | [diff] [blame] | 47 | pr_info(" ** Called platform_halt() **\n"); |
Max Filippov | feec273 | 2016-09-20 17:26:48 -0700 | [diff] [blame] | 48 | simc_exit(0); |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | void platform_power_off(void) |
| 52 | { |
Max Filippov | 2375317 | 2012-09-17 05:44:47 +0400 | [diff] [blame] | 53 | pr_info(" ** Called platform_power_off() **\n"); |
Max Filippov | feec273 | 2016-09-20 17:26:48 -0700 | [diff] [blame] | 54 | simc_exit(0); |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 55 | } |
| 56 | void platform_restart(void) |
| 57 | { |
| 58 | /* Flush and reset the mmu, simulate a processor reset, and |
| 59 | * jump to the reset vector. */ |
Max Filippov | 4f20568 | 2016-09-07 13:33:47 -0700 | [diff] [blame] | 60 | cpu_reset(); |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 61 | /* control never gets here */ |
| 62 | } |
| 63 | |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 64 | void platform_heartbeat(void) |
| 65 | { |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 68 | static int |
| 69 | iss_panic_event(struct notifier_block *this, unsigned long event, void *ptr) |
| 70 | { |
Max Filippov | feec273 | 2016-09-20 17:26:48 -0700 | [diff] [blame] | 71 | simc_exit(1); |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 72 | return NOTIFY_DONE; |
| 73 | } |
| 74 | |
| 75 | static struct notifier_block iss_panic_block = { |
Max Filippov | 3ced973 | 2017-03-13 10:28:33 -0700 | [diff] [blame] | 76 | .notifier_call = iss_panic_event, |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | void __init platform_setup(char **p_cmdline) |
| 80 | { |
Max Filippov | fbe22d2 | 2017-03-13 10:34:36 -0700 | [diff] [blame] | 81 | int argc = simc_argc(); |
| 82 | int argv_size = simc_argv_size(); |
| 83 | |
| 84 | if (argc > 1) { |
| 85 | void **argv = alloc_bootmem(argv_size); |
| 86 | char *cmdline = alloc_bootmem(argv_size); |
| 87 | int i; |
| 88 | |
| 89 | cmdline[0] = 0; |
| 90 | simc_argv((void *)argv); |
| 91 | |
| 92 | for (i = 1; i < argc; ++i) { |
| 93 | if (i > 1) |
| 94 | strcat(cmdline, " "); |
| 95 | strcat(cmdline, argv[i]); |
| 96 | } |
| 97 | *p_cmdline = cmdline; |
| 98 | } |
| 99 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 100 | atomic_notifier_chain_register(&panic_notifier_list, &iss_panic_block); |
Chris Zankel | 7282bee | 2005-06-23 22:01:33 -0700 | [diff] [blame] | 101 | } |