blob: 8f845f6e5f4266568288969b9b19b7357b86598b [file] [log] [blame]
David Daneyc52d0d32010-02-18 16:13:04 -08001/*
Alex Smithebb5e782015-10-21 09:54:38 +01002 * Copyright (C) 2015 Imagination Technologies
3 * Author: Alex Smith <alex.smith@imgtec.com>
David Daneyc52d0d32010-02-18 16:13:04 -08004 *
Alex Smithebb5e782015-10-21 09:54:38 +01005 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
David Daneyc52d0d32010-02-18 16:13:04 -08009 */
10
David Daneyc52d0d32010-02-18 16:13:04 -080011#include <linux/binfmts.h>
12#include <linux/elf.h>
Alex Smithebb5e782015-10-21 09:54:38 +010013#include <linux/err.h>
14#include <linux/init.h>
Alex Smitha7f4df42015-10-21 09:57:44 +010015#include <linux/ioport.h>
Paul Burton0f02cfb2018-08-30 11:01:21 -070016#include <linux/kernel.h>
Alex Smithebb5e782015-10-21 09:54:38 +010017#include <linux/mm.h>
18#include <linux/sched.h>
19#include <linux/slab.h>
Alex Smitha7f4df42015-10-21 09:57:44 +010020#include <linux/timekeeper_internal.h>
David Daneyc52d0d32010-02-18 16:13:04 -080021
Alex Smithebb5e782015-10-21 09:54:38 +010022#include <asm/abi.h>
Paul Burton00578cd2017-08-12 21:36:30 -070023#include <asm/mips-cps.h>
Paul Burton0f02cfb2018-08-30 11:01:21 -070024#include <asm/page.h>
David Daneyc52d0d32010-02-18 16:13:04 -080025#include <asm/vdso.h>
Alex Smithebb5e782015-10-21 09:54:38 +010026
27/* Kernel-provided data used by the VDSO. */
28static union mips_vdso_data vdso_data __page_aligned_data;
David Daneyc52d0d32010-02-18 16:13:04 -080029
30/*
Alex Smitha7f4df42015-10-21 09:57:44 +010031 * Mapping for the VDSO data/GIC pages. The real pages are mapped manually, as
Alex Smithebb5e782015-10-21 09:54:38 +010032 * what we map and where within the area they are mapped is determined at
33 * runtime.
David Daneyc52d0d32010-02-18 16:13:04 -080034 */
Alex Smithebb5e782015-10-21 09:54:38 +010035static struct page *no_pages[] = { NULL };
36static struct vm_special_mapping vdso_vvar_mapping = {
37 .name = "[vvar]",
38 .pages = no_pages,
39};
David Daneyc52d0d32010-02-18 16:13:04 -080040
Alex Smithebb5e782015-10-21 09:54:38 +010041static void __init init_vdso_image(struct mips_vdso_image *image)
David Daneyc52d0d32010-02-18 16:13:04 -080042{
Alex Smithebb5e782015-10-21 09:54:38 +010043 unsigned long num_pages, i;
James Hogan554af0c2016-09-07 13:37:01 +010044 unsigned long data_pfn;
Alex Smithebb5e782015-10-21 09:54:38 +010045
46 BUG_ON(!PAGE_ALIGNED(image->data));
47 BUG_ON(!PAGE_ALIGNED(image->size));
48
49 num_pages = image->size / PAGE_SIZE;
50
James Hogan554af0c2016-09-07 13:37:01 +010051 data_pfn = __phys_to_pfn(__pa_symbol(image->data));
52 for (i = 0; i < num_pages; i++)
53 image->mapping.pages[i] = pfn_to_page(data_pfn + i);
David Daneyc52d0d32010-02-18 16:13:04 -080054}
55
56static int __init init_vdso(void)
57{
Alex Smithebb5e782015-10-21 09:54:38 +010058 init_vdso_image(&vdso_image);
David Daneyc52d0d32010-02-18 16:13:04 -080059
Alex Smithebb5e782015-10-21 09:54:38 +010060#ifdef CONFIG_MIPS32_O32
61 init_vdso_image(&vdso_image_o32);
David Daneyc52d0d32010-02-18 16:13:04 -080062#endif
63
Alex Smithebb5e782015-10-21 09:54:38 +010064#ifdef CONFIG_MIPS32_N32
65 init_vdso_image(&vdso_image_n32);
66#endif
David Daneyc52d0d32010-02-18 16:13:04 -080067
David Daneyc52d0d32010-02-18 16:13:04 -080068 return 0;
69}
David Daney1ed84532010-06-16 15:00:28 -070070subsys_initcall(init_vdso);
David Daneyc52d0d32010-02-18 16:13:04 -080071
Alex Smitha7f4df42015-10-21 09:57:44 +010072void update_vsyscall(struct timekeeper *tk)
73{
74 vdso_data_write_begin(&vdso_data);
75
76 vdso_data.xtime_sec = tk->xtime_sec;
77 vdso_data.xtime_nsec = tk->tkr_mono.xtime_nsec;
78 vdso_data.wall_to_mono_sec = tk->wall_to_monotonic.tv_sec;
79 vdso_data.wall_to_mono_nsec = tk->wall_to_monotonic.tv_nsec;
80 vdso_data.cs_shift = tk->tkr_mono.shift;
81
82 vdso_data.clock_mode = tk->tkr_mono.clock->archdata.vdso_clock_mode;
83 if (vdso_data.clock_mode != VDSO_CLOCK_NONE) {
84 vdso_data.cs_mult = tk->tkr_mono.mult;
85 vdso_data.cs_cycle_last = tk->tkr_mono.cycle_last;
86 vdso_data.cs_mask = tk->tkr_mono.mask;
87 }
88
89 vdso_data_write_end(&vdso_data);
90}
91
92void update_vsyscall_tz(void)
93{
94 if (vdso_data.clock_mode != VDSO_CLOCK_NONE) {
95 vdso_data.tz_minuteswest = sys_tz.tz_minuteswest;
96 vdso_data.tz_dsttime = sys_tz.tz_dsttime;
97 }
98}
99
David Daneyc52d0d32010-02-18 16:13:04 -0800100int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
101{
Alex Smithebb5e782015-10-21 09:54:38 +0100102 struct mips_vdso_image *image = current->thread.abi->vdso;
David Daneyc52d0d32010-02-18 16:13:04 -0800103 struct mm_struct *mm = current->mm;
Paul Burton00578cd2017-08-12 21:36:30 -0700104 unsigned long gic_size, vvar_size, size, base, data_addr, vdso_addr, gic_pfn;
Alex Smithebb5e782015-10-21 09:54:38 +0100105 struct vm_area_struct *vma;
106 int ret;
David Daneyc52d0d32010-02-18 16:13:04 -0800107
Michal Hocko69048172016-05-23 16:25:54 -0700108 if (down_write_killable(&mm->mmap_sem))
109 return -EINTR;
David Daneyc52d0d32010-02-18 16:13:04 -0800110
Paul Burton432c6ba2016-07-08 11:06:19 +0100111 /* Map delay slot emulation page */
112 base = mmap_region(NULL, STACK_TOP, PAGE_SIZE,
113 VM_READ|VM_WRITE|VM_EXEC|
114 VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC,
Mike Rapoport897ab3e2017-02-24 14:58:22 -0800115 0, NULL);
Paul Burton432c6ba2016-07-08 11:06:19 +0100116 if (IS_ERR_VALUE(base)) {
117 ret = base;
118 goto out;
119 }
120
Alex Smitha7f4df42015-10-21 09:57:44 +0100121 /*
122 * Determine total area size. This includes the VDSO data itself, the
123 * data page, and the GIC user page if present. Always create a mapping
124 * for the GIC user area if the GIC is present regardless of whether it
125 * is the current clocksource, in case it comes into use later on. We
126 * only map a page even though the total area is 64K, as we only need
127 * the counter registers at the start.
128 */
Paul Burton00578cd2017-08-12 21:36:30 -0700129 gic_size = mips_gic_present() ? PAGE_SIZE : 0;
Alex Smitha7f4df42015-10-21 09:57:44 +0100130 vvar_size = gic_size + PAGE_SIZE;
131 size = vvar_size + image->size;
132
Paul Burton0f02cfb2018-08-30 11:01:21 -0700133 /*
134 * Find a region that's large enough for us to perform the
135 * colour-matching alignment below.
136 */
137 if (cpu_has_dc_aliases)
138 size += shm_align_mask + 1;
139
Alex Smitha7f4df42015-10-21 09:57:44 +0100140 base = get_unmapped_area(NULL, 0, size, 0, 0);
Alex Smithebb5e782015-10-21 09:54:38 +0100141 if (IS_ERR_VALUE(base)) {
142 ret = base;
143 goto out;
David Daneyc52d0d32010-02-18 16:13:04 -0800144 }
145
Paul Burton0f02cfb2018-08-30 11:01:21 -0700146 /*
147 * If we suffer from dcache aliasing, ensure that the VDSO data page
148 * mapping is coloured the same as the kernel's mapping of that memory.
149 * This ensures that when the kernel updates the VDSO data userland
150 * will observe it without requiring cache invalidations.
151 */
152 if (cpu_has_dc_aliases) {
153 base = __ALIGN_MASK(base, shm_align_mask);
154 base += ((unsigned long)&vdso_data - gic_size) & shm_align_mask;
155 }
156
Alex Smitha7f4df42015-10-21 09:57:44 +0100157 data_addr = base + gic_size;
158 vdso_addr = data_addr + PAGE_SIZE;
David Daneyc52d0d32010-02-18 16:13:04 -0800159
Alex Smitha7f4df42015-10-21 09:57:44 +0100160 vma = _install_special_mapping(mm, base, vvar_size,
Alex Smithebb5e782015-10-21 09:54:38 +0100161 VM_READ | VM_MAYREAD,
162 &vdso_vvar_mapping);
163 if (IS_ERR(vma)) {
164 ret = PTR_ERR(vma);
165 goto out;
166 }
167
Alex Smitha7f4df42015-10-21 09:57:44 +0100168 /* Map GIC user page. */
169 if (gic_size) {
Paul Burton00578cd2017-08-12 21:36:30 -0700170 gic_pfn = virt_to_phys(mips_gic_base + MIPS_GIC_USER_OFS) >> PAGE_SHIFT;
Alex Smitha7f4df42015-10-21 09:57:44 +0100171
Paul Burton00578cd2017-08-12 21:36:30 -0700172 ret = io_remap_pfn_range(vma, base, gic_pfn, gic_size,
Alex Smitha7f4df42015-10-21 09:57:44 +0100173 pgprot_noncached(PAGE_READONLY));
174 if (ret)
175 goto out;
176 }
177
Alex Smithebb5e782015-10-21 09:54:38 +0100178 /* Map data page. */
Alex Smitha7f4df42015-10-21 09:57:44 +0100179 ret = remap_pfn_range(vma, data_addr,
Alex Smithebb5e782015-10-21 09:54:38 +0100180 virt_to_phys(&vdso_data) >> PAGE_SHIFT,
181 PAGE_SIZE, PAGE_READONLY);
David Daneyc52d0d32010-02-18 16:13:04 -0800182 if (ret)
Alex Smithebb5e782015-10-21 09:54:38 +0100183 goto out;
David Daneyc52d0d32010-02-18 16:13:04 -0800184
Alex Smithebb5e782015-10-21 09:54:38 +0100185 /* Map VDSO image. */
186 vma = _install_special_mapping(mm, vdso_addr, image->size,
187 VM_READ | VM_EXEC |
188 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC,
189 &image->mapping);
190 if (IS_ERR(vma)) {
191 ret = PTR_ERR(vma);
192 goto out;
193 }
David Daneyc52d0d32010-02-18 16:13:04 -0800194
Alex Smithebb5e782015-10-21 09:54:38 +0100195 mm->context.vdso = (void *)vdso_addr;
196 ret = 0;
197
198out:
David Daneyc52d0d32010-02-18 16:13:04 -0800199 up_write(&mm->mmap_sem);
200 return ret;
201}