opnsense-src/sys/compat/linuxkpi/common/include/asm/set_memory.h
Tijl Coosemans 147ea7d409 linuxkpi: Fix set_memory_*
set_memory_* is currently implemented using PHYS_TO_DMAP but not all
architectures have a DMAP.  Looking at how this function is used the
given address isn't physical but virtual so the PHYS_TO_DMAP call can
simply be removed.

Also cast numpages before shifting it to avoid overflow.

Reviewed by:	kib, markj
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D45057

(cherry picked from commit 7206f7c619912bdd4d54dd539824733eae50c3a9)
2024-05-11 17:32:35 +02:00

126 lines
3.4 KiB
C

/*-
* Copyright (c) 2010 Isilon Systems, Inc.
* Copyright (c) 2016 Matt Macy (mmacy@nextbsd.org)
* Copyright (c) 2017 Mellanox Technologies, Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice unmodified, this list of conditions, and the following
* disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _LINUXKPI_ASM_SET_MEMORY_H_
#define _LINUXKPI_ASM_SET_MEMORY_H_
#include <linux/page.h>
static inline int
set_memory_uc(unsigned long addr, int numpages)
{
vm_size_t len;
len = (vm_size_t)numpages << PAGE_SHIFT;
return (-pmap_change_attr(addr, len, VM_MEMATTR_UNCACHEABLE));
}
static inline int
set_memory_wc(unsigned long addr, int numpages)
{
#ifdef VM_MEMATTR_WRITE_COMBINING
vm_size_t len;
len = (vm_size_t)numpages << PAGE_SHIFT;
return (-pmap_change_attr(addr, len, VM_MEMATTR_WRITE_COMBINING));
#else
return (set_memory_uc(addr, numpages));
#endif
}
static inline int
set_memory_wb(unsigned long addr, int numpages)
{
vm_size_t len;
len = (vm_size_t)numpages << PAGE_SHIFT;
return (-pmap_change_attr(addr, len, VM_MEMATTR_WRITE_BACK));
}
static inline int
set_pages_uc(struct page *page, int numpages)
{
KASSERT(numpages == 1, ("%s: numpages %d", __func__, numpages));
pmap_page_set_memattr(page, VM_MEMATTR_UNCACHEABLE);
return (0);
}
static inline int
set_pages_wc(struct page *page, int numpages)
{
KASSERT(numpages == 1, ("%s: numpages %d", __func__, numpages));
#ifdef VM_MEMATTR_WRITE_COMBINING
pmap_page_set_memattr(page, VM_MEMATTR_WRITE_COMBINING);
#else
return (set_pages_uc(page, numpages));
#endif
return (0);
}
static inline int
set_pages_wb(struct page *page, int numpages)
{
KASSERT(numpages == 1, ("%s: numpages %d", __func__, numpages));
pmap_page_set_memattr(page, VM_MEMATTR_WRITE_BACK);
return (0);
}
static inline int
set_pages_array_wb(struct page **pages, int addrinarray)
{
int i;
for (i = 0; i < addrinarray; i++)
set_pages_wb(pages[i], 1);
return (0);
}
static inline int
set_pages_array_wc(struct page **pages, int addrinarray)
{
int i;
for (i = 0; i < addrinarray; i++)
set_pages_wc(pages[i], 1);
return (0);
}
static inline int
set_pages_array_uc(struct page **pages, int addrinarray)
{
int i;
for (i = 0; i < addrinarray; i++)
set_pages_uc(pages[i], 1);
return (0);
}
#endif /* _LINUXKPI_ASM_SET_MEMORY_H_ */