upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
633 B
43 lines
633 B
/**
|
|
* @file IxOsalOsCacheMMU.c (linux)
|
|
*
|
|
* @brief Cache MemAlloc and MemFree.
|
|
*
|
|
*
|
|
* @par
|
|
* IXP400 SW Release version 1.5
|
|
*
|
|
* -- Copyright Notice --
|
|
*
|
|
* @par
|
|
* Copyright 2001-2005, Intel Corporation.
|
|
* All rights reserved.
|
|
*
|
|
* @par
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
* @par
|
|
* -- End of Copyright Notice --
|
|
*/
|
|
|
|
#include "IxOsal.h"
|
|
|
|
#include <malloc.h>
|
|
|
|
/*
|
|
* Allocate on a cache line boundary (null pointers are
|
|
* not affected by this operation). This operation is NOT cache safe.
|
|
*/
|
|
void *
|
|
ixOsalCacheDmaMalloc (UINT32 n)
|
|
{
|
|
return malloc(n);
|
|
}
|
|
|
|
/*
|
|
*
|
|
*/
|
|
void
|
|
ixOsalCacheDmaFree (void *ptr)
|
|
{
|
|
free(ptr);
|
|
}
|
|
|