| /**************************************************************************** |
| * arch/arm/src/lc823450/lc823450_testset.c |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. The |
| * ASF licenses this file to you 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 |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * 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. |
| * |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Included Files |
| ****************************************************************************/ |
| |
| #include <nuttx/config.h> |
| |
| #include <nuttx/arch.h> |
| #include <nuttx/spinlock.h> |
| |
| #include "arm_internal.h" |
| |
| /**************************************************************************** |
| * Pre-processor Definitions |
| ****************************************************************************/ |
| |
| #define LC823450_MUTEX_REG_BASE 0x40005000 |
| #define MUTEX_REG_MUTEX0 (LC823450_MUTEX_REG_BASE + 0x00) |
| |
| /**************************************************************************** |
| * Public Functions |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Name: up_testset |
| * |
| * Description: |
| * Perform and atomic test and set operation on the provided spinlock. |
| * |
| * This function must be provided via the architecture-specific logic. |
| * |
| * Note: |
| * LC823450 does not support ldrex/strex. Instead, MUTEX is provided. |
| * |
| * Input Parameters: |
| * lock - A reference to the spinlock object. |
| * |
| * Returned Value: |
| * The spinlock is always locked upon return. The previous value of the |
| * spinlock variable is returned, either SP_LOCKED if the spinlock was |
| * previously locked (meaning that the test-and-set operation failed to |
| * obtain the lock) or SP_UNLOCKED if the spinlock was previously unlocked |
| * (meaning that we successfully obtained the lock). |
| * |
| ****************************************************************************/ |
| |
| spinlock_t up_testset(volatile spinlock_t *lock) |
| { |
| uint32_t val; |
| spinlock_t ret; |
| irqstate_t flags; |
| |
| flags = up_irq_save(); |
| |
| val = (this_cpu() << 16) | 0x1; |
| |
| do |
| { |
| putreg32(val, MUTEX_REG_MUTEX0); |
| } |
| while (getreg32(MUTEX_REG_MUTEX0) != val); |
| |
| UP_DMB(); |
| |
| ret = *lock; |
| |
| if (ret == SP_UNLOCKED) |
| { |
| *lock = SP_LOCKED; |
| } |
| |
| UP_DMB(); |
| |
| val = (this_cpu() << 16) | 0x0; |
| putreg32(val, MUTEX_REG_MUTEX0); |
| |
| up_irq_restore(flags); |
| |
| return ret; |
| } |