Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support loongarch64 #1038

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 100 additions & 0 deletions src/utils/asm-loongarch64.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
/*
* Copyright (c) 2001-2020 Mellanox Technologies, Ltd. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - 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.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/


#ifndef ASMLOONGARCH64_H_
#define ASMLOONGARCH64_H_

#include <stdint.h>
#include <unistd.h>

#define COPY_64B_NT(dst, src) \
*dst++ = *src++; \
*dst++ = *src++; \
*dst++ = *src++; \
*dst++ = *src++; \
*dst++ = *src++; \
*dst++ = *src++; \
*dst++ = *src++; \
*dst++ = *src++

#define mb() asm volatile("dbar 0" ::: "memory")
#define rmb() mb()
#define wmb() mb()
#define wc_wmb() mb()

/**
* Add to the atomic variable.
* @param i integer value to add.
* @param v pointer of type atomic_t.
* @return Value before add.
*/
static inline int atomic_fetch_and_add(int i, volatile int *ptr)
{
return __atomic_fetch_add(ptr, i, __ATOMIC_ACQUIRE);
}

/**
* Read RDTSC register
*/
static inline void gettimeoftsc(unsigned long long *p_tscval)
{
// Read Time Stamp Counter
int rID=0;
asm volatile("ibar 0" : : : "memory");
asm volatile("rdtime.d %0, %1" : "=r" ((unsigned long long)*p_tscval),"=r" (rID));
}

/**
* Cache Line Prefetch - Arch specific!
*/
#ifndef L1_CACHE_BYTES
#define L1_CACHE_BYTES 64
#endif

static inline void prefetch(void *x)
{
__builtin_prefetch(x,0,1);
//asm volatile("prfm pldl1keep, %a0\n" : : "p" (x));
}

static inline void prefetch_range(void *addr, size_t len)
{
char *cp = (char*)addr;
char *end = (char*)addr + len;
for (; cp < end; cp += L1_CACHE_BYTES)
prefetch(cp);
}



#endif
2 changes: 2 additions & 0 deletions src/utils/asm.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
#include "asm-ppc64.h"
#elif defined(__x86_64__)
#include "asm-x86.h"
#elif defined(__loongarch__)
#include "asm-loongarch64.h"
#else
#error No architecture specific memory barrier definitions found!
#endif
Expand Down