mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-02-04 12:41:34 +00:00
Most of these warnings were between int or ssize_t and size_t. In particular, various POSIX system calls like read() and write() return ssize_t and comparing that value with the sizeof a buffer is a common source of these warnings. Another common source is using an int as the iterator in a for loop with the limit being a size_t. With the type change, some printf() specifiers needed to change also.
206 lines
5.6 KiB
C
206 lines
5.6 KiB
C
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
|
|
/*
|
|
* COPYRIGHT (c) 2014.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* 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 COPYRIGHT HOLDERS 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 COPYRIGHT OWNER 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.
|
|
*/
|
|
|
|
/*
|
|
* Use the Init task to walk the higher priority TA1 across all the cores.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems.h>
|
|
|
|
#include "tmacros.h"
|
|
|
|
const char rtems_test_name[] = "SMPSCHEDAFFINITY 4";
|
|
|
|
#define NUM_CPUS 4
|
|
#define TASK_COUNT 2
|
|
|
|
struct task_data_t {
|
|
rtems_id id;
|
|
int expected_cpu;
|
|
bool ran;
|
|
int actual_cpu;
|
|
};
|
|
|
|
struct task_data_t task_data = {
|
|
0x0, 2, false, 0xff
|
|
};
|
|
|
|
rtems_id task_sem;
|
|
|
|
static void task(rtems_task_argument arg);
|
|
|
|
static void test_delay(rtems_interval ticks)
|
|
{
|
|
rtems_interval start, stop;
|
|
start = rtems_clock_get_ticks_since_boot();
|
|
do {
|
|
stop = rtems_clock_get_ticks_since_boot();
|
|
} while ( (stop - start) < ticks );
|
|
}
|
|
|
|
/*
|
|
* Task that continually sets the cpu and
|
|
* run indicators without blocking.
|
|
*/
|
|
static void task(rtems_task_argument arg)
|
|
{
|
|
(void) arg;
|
|
|
|
rtems_status_code sc;
|
|
|
|
while (true) {
|
|
sc = rtems_semaphore_obtain (task_sem, RTEMS_NO_WAIT, 0);
|
|
if (sc == RTEMS_SUCCESSFUL) {
|
|
task_data.ran = true;
|
|
task_data.actual_cpu = rtems_scheduler_get_processor();
|
|
rtems_semaphore_release(task_sem);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void test(void)
|
|
{
|
|
rtems_status_code sc;
|
|
uint32_t cpu_count;
|
|
uint32_t cpu;
|
|
uint32_t i;
|
|
cpu_set_t cpuset;
|
|
|
|
/* Get the number of processors that we are using. */
|
|
cpu_count = rtems_scheduler_get_processor_maximum();
|
|
if (cpu_count < 2) {
|
|
printf("Error: Test requires at least 2 cpus\n");
|
|
return;
|
|
}
|
|
|
|
printf("Create Semaphore\n");
|
|
sc = rtems_semaphore_create(
|
|
rtems_build_name('S', 'E', 'M', '0'),
|
|
1, /* initial count = 1 */
|
|
RTEMS_BINARY_SEMAPHORE |
|
|
RTEMS_PRIORITY |
|
|
RTEMS_PRIORITY_CEILING,
|
|
0,
|
|
&task_sem
|
|
);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
/*
|
|
* Create and start TA1 at a higher priority
|
|
* than the init task.
|
|
*/
|
|
sc = rtems_task_create(
|
|
rtems_build_name('T', 'A', '0', '1'),
|
|
4,
|
|
RTEMS_MINIMUM_STACK_SIZE,
|
|
RTEMS_DEFAULT_MODES,
|
|
RTEMS_DEFAULT_ATTRIBUTES,
|
|
&task_data.id
|
|
);
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
printf("Start TA1\n");
|
|
sc = rtems_task_start( task_data.id, task, 0 );
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
/*
|
|
* Verify the Init task is running on the max core.
|
|
*/
|
|
printf("Verify Init task is on cpu %" PRIu32 "\n",cpu_count-1);
|
|
cpu = rtems_scheduler_get_processor();
|
|
rtems_test_assert(cpu == (cpu_count-1));
|
|
|
|
/* Walk TA1 across all of the cores */
|
|
for(i=0; i < cpu_count; i++) {
|
|
/* Set the Affinity to core i */
|
|
CPU_ZERO(&cpuset);
|
|
CPU_SET(i, &cpuset);
|
|
printf("Set Affinity TA1 to cpu %d\n", i);
|
|
sc = rtems_task_set_affinity( task_data.id, sizeof(cpuset), &cpuset );
|
|
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
|
|
|
|
/* Wait a bit to be sure it has switched cores then clear the task data */
|
|
test_delay(50);
|
|
while( rtems_semaphore_obtain (task_sem, RTEMS_NO_WAIT, 0) != RTEMS_SUCCESSFUL );
|
|
task_data.ran = false;
|
|
task_data.expected_cpu = i;
|
|
rtems_semaphore_release(task_sem);
|
|
test_delay(50);
|
|
|
|
/* Verify the task ran on core i */
|
|
while( rtems_semaphore_obtain (task_sem, RTEMS_NO_WAIT, 0) != RTEMS_SUCCESSFUL );
|
|
if (task_data.ran != true)
|
|
printf("Error: TA01 never ran.\n");
|
|
else
|
|
printf(
|
|
"TA1 expected cpu: %d actual cpu %d\n",
|
|
task_data.expected_cpu,
|
|
task_data.actual_cpu
|
|
);
|
|
rtems_test_assert(task_data.ran == true);
|
|
rtems_test_assert(task_data.expected_cpu == task_data.actual_cpu);
|
|
rtems_semaphore_release(task_sem);
|
|
}
|
|
}
|
|
|
|
static void Init(rtems_task_argument arg)
|
|
{
|
|
(void) arg;
|
|
|
|
TEST_BEGIN();
|
|
|
|
test();
|
|
|
|
TEST_END();
|
|
rtems_test_exit(0);
|
|
}
|
|
|
|
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
|
|
#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
|
|
|
|
#define CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP
|
|
|
|
#define CONFIGURE_MAXIMUM_SEMAPHORES 1
|
|
|
|
#define CONFIGURE_MAXIMUM_PROCESSORS NUM_CPUS
|
|
|
|
#define CONFIGURE_MAXIMUM_TASKS TASK_COUNT
|
|
|
|
#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
|
|
|
|
#define CONFIGURE_INIT_TASK_PRIORITY 8
|
|
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
|
|
|
|
#define CONFIGURE_INIT
|
|
|
|
#include <rtems/confdefs.h>
|