mirror of
https://github.com/opnsense/src.git
synced 2026-03-21 02:10:09 -04:00
[Why] This function takes an offset and a length as argument, not a physical address and a number of pages. This misuse caused the `set_memory_*()` and `arch_io_reserve_memtype_wc()` functions to return EINVAL. Another problem was the fact that they returned errors as a positive integer, whereas Linux uses negative integers. [How] Physical addresses and number of pages are converted to offset+length in the `set_memory_*()` functions. `arch_io_reserve_memtype_wc()` now calls `pmap_change_attr()` directly instead of using `set_memory_wc()`. Reviewed by: manu Approved by: manu Differential Revision: https://reviews.freebsd.org/D42053 (cherry picked from commit 1e99b2ee90956f275c3668e92a408400f2dada1c)
135 lines
3.5 KiB
C
135 lines
3.5 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_offset_t va;
|
|
vm_size_t len;
|
|
|
|
va = PHYS_TO_DMAP(addr);
|
|
len = numpages << PAGE_SHIFT;
|
|
|
|
return (-pmap_change_attr(va, len, VM_MEMATTR_UNCACHEABLE));
|
|
}
|
|
|
|
static inline int
|
|
set_memory_wc(unsigned long addr, int numpages)
|
|
{
|
|
#ifdef VM_MEMATTR_WRITE_COMBINING
|
|
vm_offset_t va;
|
|
vm_size_t len;
|
|
|
|
va = PHYS_TO_DMAP(addr);
|
|
len = numpages << PAGE_SHIFT;
|
|
|
|
return (-pmap_change_attr(va, 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_offset_t va;
|
|
vm_size_t len;
|
|
|
|
va = PHYS_TO_DMAP(addr);
|
|
len = numpages << PAGE_SHIFT;
|
|
|
|
return (-pmap_change_attr(va, 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_ */
|