forked from Imagelibrary/rtems
* block01/init.c, block02/init.c, block03/init.c, block04/init.c, block05/init.c, block06/init.c, block07/init.c, block09/init.c, block10/init.c: Changed CONFIGURE_MAXIMUM_SEMAPHORES defines.
165 lines
3.2 KiB
C
165 lines
3.2 KiB
C
/**
|
|
* @file
|
|
*
|
|
* @ingroup test_bdbuf
|
|
*
|
|
* @brief Bdbuf test.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2009
|
|
* embedded brains GmbH
|
|
* Obere Lagerstr. 30
|
|
* D-82178 Puchheim
|
|
* Germany
|
|
* <rtems@embedded-brains.de>
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*/
|
|
|
|
#include "tmacros.h"
|
|
|
|
#include <rtems.h>
|
|
#include <rtems/ramdisk.h>
|
|
#include <rtems/bdbuf.h>
|
|
#include <rtems/diskdevs.h>
|
|
|
|
#define ASSERT_SC(sc) rtems_test_assert((sc) == RTEMS_SUCCESSFUL)
|
|
|
|
#define PRIORITY_INIT 10
|
|
|
|
#define PRIORITY_SWAPOUT 50
|
|
|
|
#define PRIORITY_HIGH 30
|
|
|
|
#define PRIORITY_LOW 40
|
|
|
|
#define BLOCK_SIZE 512
|
|
|
|
#define BLOCK_COUNT 1
|
|
|
|
static dev_t dev;
|
|
|
|
static rtems_id task_id_low;
|
|
|
|
static rtems_id task_id_high;
|
|
|
|
static void task_low(rtems_task_argument arg)
|
|
{
|
|
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
|
rtems_bdbuf_buffer *bd = NULL;
|
|
|
|
printk("L: try access: 0\n");
|
|
|
|
sc = rtems_bdbuf_get(dev, 0, &bd);
|
|
ASSERT_SC(sc);
|
|
|
|
printk("L: access: 0\n");
|
|
|
|
sc = rtems_task_resume(task_id_high);
|
|
ASSERT_SC(sc);
|
|
|
|
sc = rtems_bdbuf_sync(bd);
|
|
ASSERT_SC(sc);
|
|
|
|
printk("L: sync done: 0\n");
|
|
|
|
rtems_test_assert(false);
|
|
}
|
|
|
|
static void task_high(rtems_task_argument arg)
|
|
{
|
|
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
|
rtems_bdbuf_buffer *bd = NULL;
|
|
|
|
sc = rtems_task_suspend(RTEMS_SELF);
|
|
ASSERT_SC(sc);
|
|
|
|
printk("H: try access: 0\n");
|
|
|
|
sc = rtems_bdbuf_get(dev, 0, &bd);
|
|
ASSERT_SC(sc);
|
|
|
|
printk("H: access: 0\n");
|
|
|
|
printk("H: release: 0\n");
|
|
|
|
sc = rtems_bdbuf_release(bd);
|
|
ASSERT_SC(sc);
|
|
|
|
printk("H: release done: 0\n");
|
|
|
|
printk("*** END OF TEST BLOCK 4 ***\n");
|
|
|
|
exit(0);
|
|
}
|
|
|
|
static rtems_task Init(rtems_task_argument argument)
|
|
{
|
|
rtems_status_code sc = RTEMS_SUCCESSFUL;
|
|
|
|
printk("\n\n*** TEST BLOCK 4 ***\n");
|
|
|
|
sc = rtems_disk_io_initialize();
|
|
ASSERT_SC(sc);
|
|
|
|
sc = ramdisk_register(BLOCK_SIZE, BLOCK_COUNT, false, "/dev/rda", &dev);
|
|
ASSERT_SC(sc);
|
|
|
|
sc = rtems_task_create(
|
|
rtems_build_name(' ', 'L', 'O', 'W'),
|
|
PRIORITY_LOW,
|
|
0,
|
|
RTEMS_DEFAULT_MODES,
|
|
RTEMS_DEFAULT_ATTRIBUTES,
|
|
&task_id_low
|
|
);
|
|
ASSERT_SC(sc);
|
|
|
|
sc = rtems_task_start(task_id_low, task_low, 0);
|
|
ASSERT_SC(sc);
|
|
|
|
sc = rtems_task_create(
|
|
rtems_build_name('H', 'I', 'G', 'H'),
|
|
PRIORITY_HIGH,
|
|
0,
|
|
RTEMS_DEFAULT_MODES,
|
|
RTEMS_DEFAULT_ATTRIBUTES,
|
|
&task_id_high
|
|
);
|
|
ASSERT_SC(sc);
|
|
|
|
sc = rtems_task_start(task_id_high, task_high, 0);
|
|
ASSERT_SC(sc);
|
|
|
|
sc = rtems_task_suspend(RTEMS_SELF);
|
|
ASSERT_SC(sc);
|
|
}
|
|
|
|
#define CONFIGURE_INIT
|
|
|
|
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
|
|
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
|
|
#define CONFIGURE_APPLICATION_NEEDS_LIBBLOCK
|
|
|
|
#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
|
|
|
|
#define CONFIGURE_MAXIMUM_TASKS 5
|
|
#define CONFIGURE_MAXIMUM_DRIVERS 2
|
|
|
|
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
|
|
|
|
#define CONFIGURE_INIT_TASK_PRIORITY PRIORITY_INIT
|
|
#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_DEFAULT_ATTRIBUTES
|
|
#define CONFIGURE_INIT_TASK_INITIAL_MODES RTEMS_DEFAULT_MODES
|
|
|
|
#define CONFIGURE_SWAPOUT_TASK_PRIORITY PRIORITY_SWAPOUT
|
|
|
|
#define CONFIGURE_BDBUF_BUFFER_MIN_SIZE BLOCK_SIZE
|
|
#define CONFIGURE_BDBUF_BUFFER_MAX_SIZE BLOCK_SIZE
|
|
#define CONFIGURE_BDBUF_CACHE_MEMORY_SIZE BLOCK_SIZE
|
|
|
|
#include <rtems/confdefs.h>
|