PPC: ePAPR: Fix hypercall on LE guest
[linux-2.6-block.git] / arch / powerpc / kernel / epapr_paravirt.c
CommitLineData
2e1ae9c0
LYB
1/*
2 * ePAPR para-virtualization support.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 *
17 * Copyright (C) 2012 Freescale Semiconductor, Inc.
18 */
19
20#include <linux/of.h>
26a2056e 21#include <linux/of_fdt.h>
2e1ae9c0
LYB
22#include <asm/epapr_hcalls.h>
23#include <asm/cacheflush.h>
24#include <asm/code-patching.h>
2f979de8
LYB
25#include <asm/machdep.h>
26
f9294e98 27#if !defined(CONFIG_64BIT) || defined(CONFIG_PPC_BOOK3E_64)
2f979de8
LYB
28extern void epapr_ev_idle(void);
29extern u32 epapr_ev_idle_start[];
f9294e98 30#endif
2e1ae9c0
LYB
31
32bool epapr_paravirt_enabled;
33
4e21b94c
LT
34static int __init early_init_dt_scan_epapr(unsigned long node,
35 const char *uname,
36 int depth, void *data)
2e1ae9c0 37{
2e1ae9c0 38 const u32 *insts;
4e21b94c
LT
39 unsigned long len;
40 int i;
2e1ae9c0 41
4e21b94c 42 insts = of_get_flat_dt_prop(node, "hcall-instructions", &len);
2e1ae9c0 43 if (!insts)
4e21b94c 44 return 0;
2e1ae9c0
LYB
45
46 if (len % 4 || len > (4 * 4))
4e21b94c 47 return -1;
2e1ae9c0 48
2f979de8 49 for (i = 0; i < (len / 4); i++) {
235959be
AG
50 u32 inst = be32_to_cpu(insts[i]);
51 patch_instruction(epapr_hypercall_start + i, inst);
f9294e98 52#if !defined(CONFIG_64BIT) || defined(CONFIG_PPC_BOOK3E_64)
235959be 53 patch_instruction(epapr_ev_idle_start + i, inst);
f9294e98 54#endif
2f979de8
LYB
55 }
56
f9294e98 57#if !defined(CONFIG_64BIT) || defined(CONFIG_PPC_BOOK3E_64)
4e21b94c 58 if (of_get_flat_dt_prop(node, "has-idle", NULL))
2f979de8 59 ppc_md.power_save = epapr_ev_idle;
f9294e98 60#endif
2e1ae9c0
LYB
61
62 epapr_paravirt_enabled = true;
63
4e21b94c
LT
64 return 1;
65}
66
67int __init epapr_paravirt_early_init(void)
68{
69 of_scan_flat_dt(early_init_dt_scan_epapr, NULL);
70
2e1ae9c0
LYB
71 return 0;
72}
73