| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * linux/arch/arm/mm/proc-arm720.S: MMU functions for ARM720 |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 5 | 6 | * Rob Scott (rscott@mtrob.fdns.net) |
|---|
| 6 | 7 | * Copyright (C) 2000 ARM Limited, Deep Blue Solutions Ltd. |
|---|
| 7 | 8 | * hacked for non-paged-MM by Hyok S. Choi, 2004. |
|---|
| 8 | | - * |
|---|
| 9 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 10 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 11 | | - * the Free Software Foundation; either version 2 of the License, or |
|---|
| 12 | | - * (at your option) any later version. |
|---|
| 13 | | - * |
|---|
| 14 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 15 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 | | - * GNU General Public License for more details. |
|---|
| 18 | | - * |
|---|
| 19 | | - * You should have received a copy of the GNU General Public License |
|---|
| 20 | | - * along with this program; if not, write to the Free Software |
|---|
| 21 | | - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 22 | | - * |
|---|
| 23 | 9 | * |
|---|
| 24 | 10 | * These are the low level assembler for performing cache and TLB |
|---|
| 25 | 11 | * functions on the ARM720T. The ARM720T has a writethrough IDC |
|---|
| .. | .. |
|---|
| 34 | 20 | */ |
|---|
| 35 | 21 | #include <linux/linkage.h> |
|---|
| 36 | 22 | #include <linux/init.h> |
|---|
| 23 | +#include <linux/pgtable.h> |
|---|
| 37 | 24 | #include <asm/assembler.h> |
|---|
| 38 | 25 | #include <asm/asm-offsets.h> |
|---|
| 39 | 26 | #include <asm/hwcap.h> |
|---|
| 40 | 27 | #include <asm/pgtable-hwdef.h> |
|---|
| 41 | | -#include <asm/pgtable.h> |
|---|
| 42 | 28 | #include <asm/ptrace.h> |
|---|
| 43 | 29 | |
|---|
| 44 | 30 | #include "proc-macros.S" |
|---|
| .. | .. |
|---|
| 186 | 172 | * See <asm/procinfo.h> for a definition of this structure. |
|---|
| 187 | 173 | */ |
|---|
| 188 | 174 | |
|---|
| 189 | | - .section ".proc.info.init", #alloc |
|---|
| 175 | + .section ".proc.info.init", "a" |
|---|
| 190 | 176 | |
|---|
| 191 | 177 | .macro arm720_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, cpu_flush:req |
|---|
| 192 | 178 | .type __\name\()_proc_info,#object |
|---|