| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Floating-point, VMX/Altivec and VSX loads and stores |
|---|
| 3 | 4 | * for use in instruction emulation. |
|---|
| 4 | 5 | * |
|---|
| 5 | 6 | * Copyright 2010 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com> |
|---|
| 6 | | - * |
|---|
| 7 | | - * This program is free software; you can redistribute it and/or |
|---|
| 8 | | - * modify it under the terms of the GNU General Public License |
|---|
| 9 | | - * as published by the Free Software Foundation; either version |
|---|
| 10 | | - * 2 of the License, or (at your option) any later version. |
|---|
| 11 | 7 | */ |
|---|
| 12 | 8 | |
|---|
| 13 | 9 | #include <asm/processor.h> |
|---|
| .. | .. |
|---|
| 17 | 13 | #include <asm/asm-offsets.h> |
|---|
| 18 | 14 | #include <asm/asm-compat.h> |
|---|
| 19 | 15 | #include <linux/errno.h> |
|---|
| 20 | | - |
|---|
| 21 | | -#ifdef CONFIG_PPC_FPU |
|---|
| 22 | 16 | |
|---|
| 23 | 17 | #define STKFRM (PPC_MIN_STKFRM + 16) |
|---|
| 24 | 18 | |
|---|
| .. | .. |
|---|
| 241 | 235 | MTMSRD(r6) |
|---|
| 242 | 236 | isync |
|---|
| 243 | 237 | blr |
|---|
| 244 | | - |
|---|
| 245 | | -#endif /* CONFIG_PPC_FPU */ |
|---|