2015-06-17 03:06:18 +08:00
|
|
|
/* cache_s.S - cache manipulation */
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2014 Wind River Systems, Inc.
|
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
DESCRIPTION
|
2015-06-10 22:25:07 +08:00
|
|
|
This module contains functions for manipulating caches.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-06-10 22:25:07 +08:00
|
|
|
#ifndef CONFIG_CLFLUSH_INSTRUCTION_SUPPORTED
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-06-10 22:25:07 +08:00
|
|
|
#define _ASMLANGUAGE
|
|
|
|
#include <arch/x86/asm.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-06-10 22:25:07 +08:00
|
|
|
/* externs (internal APIs) */
|
|
|
|
GTEXT(_SysCacheFlush)
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-07-02 05:22:39 +08:00
|
|
|
/**
|
|
|
|
*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Flush a page to main memory
|
2015-07-02 05:22:39 +08:00
|
|
|
*
|
|
|
|
* This implementation flushes the whole cache.
|
|
|
|
*
|
|
|
|
* C signature:
|
|
|
|
*
|
2015-09-19 03:53:53 +08:00
|
|
|
* void _SysCacheFlush (vaddr_t virt, size_t size)
|
2015-07-02 05:22:39 +08:00
|
|
|
*
|
|
|
|
* Both parameters are ignored in this implementation.
|
|
|
|
*
|
2015-07-02 05:29:04 +08:00
|
|
|
* @return N/A
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-06-10 22:25:07 +08:00
|
|
|
SECTION_FUNC(TEXT, _SysCacheFlush)
|
|
|
|
wbinvd
|
|
|
|
ret
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-06-10 22:25:07 +08:00
|
|
|
#endif /* !CONFIG_CLFLUSH_INSTRUCTION_SUPPORTED */
|