2000-10-28 06:56:15 +00:00
|
|
|
/*-
|
2000-12-01 10:19:28 +00:00
|
|
|
* Copyright (c) 2000 Mitsaru Iwasaki
|
2000-10-28 06:56:15 +00:00
|
|
|
* Copyright (c) 2000 Michael Smith
|
|
|
|
* Copyright (c) 2000 BSDi
|
|
|
|
* 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, 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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 6.2 : Memory Management
|
|
|
|
*/
|
|
|
|
|
2005-07-22 23:10:02 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2009-06-05 18:44:36 +00:00
|
|
|
#include <contrib/dev/acpica/include/acpi.h>
|
2000-10-28 06:56:15 +00:00
|
|
|
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/pmap.h>
|
|
|
|
|
2004-04-14 03:39:08 +00:00
|
|
|
MALLOC_DEFINE(M_ACPICA, "acpica", "ACPI CA memory pool");
|
2000-10-28 06:56:15 +00:00
|
|
|
|
|
|
|
void *
|
2002-03-12 00:10:40 +00:00
|
|
|
AcpiOsAllocate(ACPI_SIZE Size)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
2004-04-14 03:39:08 +00:00
|
|
|
return (malloc(Size, M_ACPICA, M_NOWAIT));
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-04-14 03:39:08 +00:00
|
|
|
AcpiOsFree(void *Memory)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
|
|
|
free(Memory, M_ACPICA);
|
|
|
|
}
|
|
|
|
|
2007-03-22 18:16:43 +00:00
|
|
|
void *
|
2009-06-05 18:44:36 +00:00
|
|
|
AcpiOsMapMemory(ACPI_PHYSICAL_ADDRESS PhysicalAddress, ACPI_SIZE Length)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
2007-03-22 18:16:43 +00:00
|
|
|
return (pmap_mapbios((vm_offset_t)PhysicalAddress, Length));
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-04-14 03:39:08 +00:00
|
|
|
AcpiOsUnmapMemory(void *LogicalAddress, ACPI_SIZE Length)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
2006-08-11 19:22:57 +00:00
|
|
|
pmap_unmapbios((vm_offset_t)LogicalAddress, Length);
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
|
|
|
|
2001-07-21 04:10:01 +00:00
|
|
|
ACPI_STATUS
|
2004-04-14 03:39:08 +00:00
|
|
|
AcpiOsGetPhysicalAddress(void *LogicalAddress,
|
|
|
|
ACPI_PHYSICAL_ADDRESS *PhysicalAddress)
|
2001-07-21 04:10:01 +00:00
|
|
|
{
|
2004-04-14 03:39:08 +00:00
|
|
|
/* We can't necessarily do this, so cop out. */
|
|
|
|
return (AE_BAD_ADDRESS);
|
2001-07-21 04:10:01 +00:00
|
|
|
}
|
|
|
|
|
2000-10-28 06:56:15 +00:00
|
|
|
BOOLEAN
|
2003-07-14 02:42:15 +00:00
|
|
|
AcpiOsReadable (void *Pointer, ACPI_SIZE Length)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
2004-04-14 03:39:08 +00:00
|
|
|
return (TRUE);
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOLEAN
|
2003-07-14 02:42:15 +00:00
|
|
|
AcpiOsWritable (void *Pointer, ACPI_SIZE Length)
|
2000-10-28 06:56:15 +00:00
|
|
|
{
|
2004-04-14 03:39:08 +00:00
|
|
|
return (TRUE);
|
2000-10-28 06:56:15 +00:00
|
|
|
}
|
|
|
|
|
2001-07-21 04:10:01 +00:00
|
|
|
ACPI_STATUS
|
2004-04-14 03:39:08 +00:00
|
|
|
AcpiOsReadMemory(ACPI_PHYSICAL_ADDRESS Address, UINT32 *Value, UINT32 Width)
|
2000-12-01 10:19:28 +00:00
|
|
|
{
|
|
|
|
void *LogicalAddress;
|
|
|
|
|
2010-07-16 03:59:50 +00:00
|
|
|
LogicalAddress = pmap_mapdev(Address, Width / 8);
|
2007-03-22 18:16:43 +00:00
|
|
|
if (LogicalAddress == NULL)
|
2004-04-14 03:39:08 +00:00
|
|
|
return (AE_NOT_EXIST);
|
2000-12-01 10:19:28 +00:00
|
|
|
|
2001-07-21 04:10:01 +00:00
|
|
|
switch (Width) {
|
|
|
|
case 8:
|
2010-07-15 17:11:49 +00:00
|
|
|
*Value = *(volatile uint8_t *)LogicalAddress;
|
2001-07-21 04:10:01 +00:00
|
|
|
break;
|
|
|
|
case 16:
|
2010-07-15 17:11:49 +00:00
|
|
|
*Value = *(volatile uint16_t *)LogicalAddress;
|
2000-12-01 10:19:28 +00:00
|
|
|
break;
|
2001-07-21 04:10:01 +00:00
|
|
|
case 32:
|
2010-07-15 17:11:49 +00:00
|
|
|
*Value = *(volatile uint32_t *)LogicalAddress;
|
2002-03-19 11:02:06 +00:00
|
|
|
break;
|
2000-12-01 10:19:28 +00:00
|
|
|
}
|
|
|
|
|
2010-07-16 03:59:50 +00:00
|
|
|
pmap_unmapdev((vm_offset_t)LogicalAddress, Width / 8);
|
2000-12-01 10:19:28 +00:00
|
|
|
|
2004-04-14 03:39:08 +00:00
|
|
|
return (AE_OK);
|
2000-12-01 10:19:28 +00:00
|
|
|
}
|
|
|
|
|
2001-07-21 04:10:01 +00:00
|
|
|
ACPI_STATUS
|
2004-04-14 03:39:08 +00:00
|
|
|
AcpiOsWriteMemory(ACPI_PHYSICAL_ADDRESS Address, UINT32 Value, UINT32 Width)
|
2000-12-01 10:19:28 +00:00
|
|
|
{
|
|
|
|
void *LogicalAddress;
|
|
|
|
|
2010-07-16 03:59:50 +00:00
|
|
|
LogicalAddress = pmap_mapdev(Address, Width / 8);
|
2007-03-22 18:16:43 +00:00
|
|
|
if (LogicalAddress == NULL)
|
2004-04-14 03:39:08 +00:00
|
|
|
return (AE_NOT_EXIST);
|
2000-12-01 10:19:28 +00:00
|
|
|
|
2001-07-21 04:10:01 +00:00
|
|
|
switch (Width) {
|
|
|
|
case 8:
|
2010-07-15 17:11:49 +00:00
|
|
|
*(volatile uint8_t *)LogicalAddress = Value;
|
2000-12-01 10:19:28 +00:00
|
|
|
break;
|
2001-07-21 04:10:01 +00:00
|
|
|
case 16:
|
2010-07-15 17:11:49 +00:00
|
|
|
*(volatile uint16_t *)LogicalAddress = Value;
|
2000-12-01 10:19:28 +00:00
|
|
|
break;
|
2001-07-21 04:10:01 +00:00
|
|
|
case 32:
|
2010-07-15 17:11:49 +00:00
|
|
|
*(volatile uint32_t *)LogicalAddress = Value;
|
2002-03-19 11:02:06 +00:00
|
|
|
break;
|
2000-12-01 10:19:28 +00:00
|
|
|
}
|
|
|
|
|
2010-07-16 03:59:50 +00:00
|
|
|
pmap_unmapdev((vm_offset_t)LogicalAddress, Width / 8);
|
2000-12-01 10:19:28 +00:00
|
|
|
|
2004-04-14 03:39:08 +00:00
|
|
|
return (AE_OK);
|
2000-12-01 10:19:28 +00:00
|
|
|
}
|