summaryrefslogtreecommitdiffstats
path: root/spec/rtems/ratemon/req/timeout.yml
blob: 32bc488d52e81c7a160cee18934d81f86ec6ed40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
copyrights:
- Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
enabled-by: true
functional-type: action
links:
- role: requirement-refinement
  uid: ../if/group
post-conditions:
- name: PostponedJobs
  states:
  - name: Nop
    test-code: |
      T_eq_u32( ctx->period->postponed_jobs, ctx->postponed_jobs );
    text: |
      The count of ${../glossary/postponedjob:/plural} of the period shall
      not be modified.
  - name: PlusOne
    test-code: |
      T_eq_u32( ctx->period->postponed_jobs, ctx->postponed_jobs + 1 );
    text: |
      The count of ${../glossary/postponedjob:/plural} of the period shall
      be incremented by one.
  test-epilogue: null
  test-prologue: null
- name: ReleaseJob
  states:
  - name: 'Yes'
    test-code: |
      T_eq_u32( ctx->release_job_counter, 1 );
    text: |
      The ${../glossary/ownertask:/term} of the period shall release a
      ${../glossary/job:/term} with a ${../glossary/deadline:/term} equal to the
      ${/glossary/clock-tick:/term} plus the next period length by the timeout
      operation.
  - name: 'No'
    test-code: |
      T_eq_u32( ctx->release_job_counter, 0 );
    text: |
      The ${../glossary/ownertask:/term} of the period shall not release a
      ${../glossary/job:/term} by the timeout operation.
  test-epilogue: null
  test-prologue: null
- name: Unblock
  states:
  - name: 'Yes'
    test-code: |
      T_eq_u32( ctx->unblock_counter, 1 );
    text: |
      The ${../glossary/ownertask:/term} of the period shall be unblocked
      by the timeout operation.
  - name: 'No'
    test-code: |
      T_eq_u32( ctx->unblock_counter, 0 );
    text: |
      The ${../glossary/ownertask:/term} of the period shall not be
      unblocked by the timeout operation.
  test-epilogue: null
  test-prologue: null
- name: PeriodState
  states:
  - name: Active
    test-code: |
      T_eq_int( ctx->period->state, RATE_MONOTONIC_ACTIVE );
    text: |
      The period state shall be active.
  - name: Expired
    test-code: |
      T_eq_int( ctx->period->state, RATE_MONOTONIC_EXPIRED );
    text: |
      The period state shall be expired.
  test-epilogue: null
  test-prologue: null
- name: Timer
  states:
  - name: Active
    test-code: |
      T_true( _Watchdog_Is_scheduled( &ctx->period->Timer ) );
      T_eq_u64(
        ctx->period->Timer.expire,
        rtems_clock_get_ticks_since_boot() + 1
      );
    text: |
      The timeout timer of the period shall expired at the current
      ${/glossary/clock-tick:/term} plus the next period length.
  test-epilogue: null
  test-prologue: null
- name: Uptime
  states:
  - name: Nop
    test-code: |
      T_eq_i64( ctx->uptime_before, ctx->period->time_period_initiated );
    text: |
      The period initiated ${/glossary/clock-monotonic:/term} value shall not
      be modified.
  - name: Set
    test-code: |
      T_ne_i64( ctx->uptime_before, ctx->period->time_period_initiated );
    text: |
      The period initiated ${/glossary/clock-monotonic:/term} value shall be
      set to the ${/glossary/clock-monotonic:/term} at some time point during
      the timeout operation.
  test-epilogue: null
  test-prologue: null
- name: CPUUsage
  states:
  - name: Nop
    test-code: |
      T_eq_i64(
        ctx->cpu_usage_before,
        ctx->period->cpu_usage_period_initiated
      );
    text: |
      The period initiated CPU usage of the ${../glossary/ownertask:/term}
      value shall not be modified.
  - name: Set
    test-code: |
      T_ne_i64(
        ctx->cpu_usage_before,
        ctx->period->cpu_usage_period_initiated
      );
    text: |
      The period initiated CPU usage of the ${../glossary/ownertask:/term}
      value shall be set to the CPU
      usage of the ${../glossary/ownertask:/term} at some time point during
      the timeout operation.
  test-epilogue: null
  test-prologue: null
pre-conditions:
- name: WaitFor
  states:
  - name: PeriodSelf
    test-code: |
      ctx->wait_for_period = true;
      ctx->period_is_other = false;
    text: |
      While the ${../glossary/ownertask:/term} of the period waits for
      the period.
  - name: PeriodOther
    test-code: |
      ctx->wait_for_period = true;
      ctx->period_is_other = true;
    text: |
      While the ${../glossary/ownertask:/term} of the period waits for
      another period.
  - name: Other
    test-code: |
      ctx->wait_for_period = false;
    text: |
      While the ${../glossary/ownertask:/term} of the period does not
      wait for a period.
  test-epilogue: null
  test-prologue: null
- name: WaitState
  states:
  - name: Blocked
    test-code: |
      ctx->intend_to_block = false;
    text: |
      While the ${../glossary/ownertask:/term} is in the blocked wait state.
  - name: IntendToBlock
    test-code: |
      ctx->intend_to_block = true;
    text: |
      While the ${../glossary/ownertask:/term} is in the intend to block
      wait state.
  test-epilogue: null
  test-prologue: null
- name: PostponedJobs
  states:
  - name: Zero
    test-code: |
      ctx->postponed_jobs = 0;
    text: |
      While the count of ${../glossary/postponedjob:/plural} is equal to zero.
  - name: NotZeroOrMax
    test-code: |
      ctx->postponed_jobs = 123;
    text: |
      While the count of ${../glossary/postponedjob:/plural} is not equal
      to zero or ${/c/if/uint32_max:/name}.
  - name: Max
    test-code: |
      ctx->postponed_jobs = UINT32_MAX;
    text: |
      While the count of ${../glossary/postponedjob:/plural} is equal
      to ${/c/if/uint32_max:/name}.
  test-epilogue: null
  test-prologue: null
rationale: null
references: []
requirement-type: functional
skip-reasons:
  WaitForPeriodZeroPostponedJobs: |
    A thread can only wait for a period if its
    ${../glossary/postponedjob:/plural} counter is zero.
test-action: |
  SendEvents( ctx->worker_id, EVENT_RESET );
  Yield();

  if ( ctx->wait_for_period ) {
    if ( ctx->period_is_other ) {
      SendEvents( ctx->worker_id, EVENT_PERIOD_OTHER );
      Yield();
      Tick( ctx );
    } else {
      SendEvents( ctx->worker_id, EVENT_PERIOD_WAIT );
      Yield();

      if ( !ctx->intend_to_block ) {
        Tick( ctx );
      }
    }
  } else {
    Tick( ctx );
  }
test-brief: null
test-cleanup: |
  ClockTick();
  Yield();
test-context:
- brief: |
    This member contains the period identifier.
  description: null
  member: |
    rtems_id period_id
- brief: |
    This member references the period control block.
  description: null
  member: |
    Rate_monotonic_Control *period
- brief: |
    This member contains another period identifier.
  description: null
  member: |
    rtems_id other_period_id
- brief: |
    This member contains the worker task identifier.
  description: null
  member: |
    rtems_id worker_id
- brief: |
    This member contains the call within ISR request.
  description: null
  member: |
    CallWithinISRRequest request
- brief: |
    If this member is true, then the worker shall wait for a period.
  description: null
  member: |
    bool wait_for_period
- brief: |
    If this member is true, then the worker shall wait for another period.
  description: null
  member: |
    bool period_is_other
- brief: |
    If this member is true, then the worker shall intend to block for a period.
  description: null
  member: |
    bool intend_to_block
- brief: |
    This member contains the ${../glossary/postponedjob:/plural} count
    before the timeout.
  description: null
  member: |
    uint32_t postponed_jobs
- brief: |
    This member contains the uptime of the period before the timeout.
  description: null
  member: |
    Timestamp_Control uptime_before
- brief: |
    This member contains the CPU usage of the period before the timeout.
  description: null
  member: |
    Timestamp_Control cpu_usage_before
- brief: |
    This member contains the release ${../glossary/job:/term} counter.
  description: null
  member: |
    uint32_t release_job_counter
- brief: |
    This member contains the unblock counter.
  description: null
  member: |
    uint32_t unblock_counter
test-context-support: null
test-description: null
test-header: null
test-includes:
- rtems/rtems/ratemonimpl.h
- rtems/test-scheduler.h
test-local-includes:
- tx-support.h
test-prepare: null
test-setup:
  brief: null
  code: |
    ctx->request.arg = ctx;
    ctx->worker_id = CreateTask( "WORK", GetSelfPriority() );
    StartTask( ctx->worker_id, Worker, ctx );
    Yield();
    ctx->period = GetControl( ctx->period_id );
  description: null
test-stop: null
test-support: |
  #define EVENT_RESET RTEMS_EVENT_0

  #define EVENT_PERIOD_WAIT RTEMS_EVENT_1

  #define EVENT_PERIOD_OTHER RTEMS_EVENT_2

  typedef ${.:/test-context-type} Context;

  static void Tick( void *arg )
  {
    Context               *ctx;
    T_scheduler_log_10     scheduler_log_10;
    const T_scheduler_log *scheduler_log;
    size_t                 index;

    ctx = arg;
    ctx->release_job_counter = 0;
    ctx->unblock_counter = 0;
    ctx->uptime_before = ctx->period->time_period_initiated;
    ctx->cpu_usage_before = ctx->period->cpu_usage_period_initiated;
    scheduler_log = T_scheduler_record_10( &scheduler_log_10 );
    T_null( scheduler_log );
    ClockTick();
    scheduler_log = T_scheduler_record( NULL );
    T_eq_ptr( &scheduler_log->header, &scheduler_log_10.header );

    index = 0;

    while ( true ) {
      const T_scheduler_event *event;

      event = T_scheduler_next_any( &scheduler_log_10.header, &index );

      if ( event == &T_scheduler_event_null ) {
        break;
      }

      T_eq_u32( event->thread->Object.id, ctx->worker_id );

      switch ( event->operation ) {
        case T_SCHEDULER_RELEASE_JOB:
          ++ctx->release_job_counter;
          T_eq_u64(
            event->release_job.deadline,
            rtems_clock_get_ticks_since_boot() + 1
          );
          break;
        case T_SCHEDULER_UNBLOCK:
          ++ctx->unblock_counter;
          break;
        default:
          break;
      }
    }
  }

  static void SchedulerBlock(
    void                    *arg,
    const T_scheduler_event *event,
    T_scheduler_when         when
  )
  {
    Context *ctx;

    ctx = arg;

    if (
      when == T_SCHEDULER_BEFORE &&
      event->operation == T_SCHEDULER_BLOCK
    ) {
      T_scheduler_set_event_handler( NULL, NULL );
      ctx->request.handler = Tick;
      CallWithinISRSubmit( &ctx->request );
    }
  }

  static Rate_monotonic_Control *GetControl( rtems_id id )
  {
    Rate_monotonic_Control *period;
    ISR_lock_Context        lock_context;

    period = _Rate_monotonic_Get( id, &lock_context );
    T_assert_not_null( period );
    _ISR_lock_ISR_enable( &lock_context );

    return period;
  }

  static void Worker( rtems_task_argument arg )
  {
    Context          *ctx;
    rtems_status_code sc;

    ctx = (Context *) arg;

    sc = rtems_rate_monotonic_create( OBJECT_NAME, &ctx->period_id );
    T_rsc_success( sc );

    sc = rtems_rate_monotonic_create( OBJECT_NAME, &ctx->other_period_id );
    T_rsc_success( sc );

    while ( true ) {
      rtems_event_set events;

      events = ReceiveAnyEvents();

      if ( ( events & EVENT_RESET ) != 0 ) {
        sc = rtems_rate_monotonic_cancel( ctx->period_id );
        T_rsc_success( sc );

        sc = rtems_rate_monotonic_cancel( ctx->other_period_id );
        T_rsc_success( sc );

        sc = rtems_rate_monotonic_period( ctx->period_id, 1 );
        T_rsc_success( sc );

        ctx->period->postponed_jobs = ctx->postponed_jobs;
      }

      if ( ( events & EVENT_PERIOD_WAIT ) != 0 ) {
        if ( ctx->intend_to_block ) {
          T_scheduler_set_event_handler( SchedulerBlock, ctx );
        }

        sc = rtems_rate_monotonic_period( ctx->period_id, 1 );
        T_rsc_success( sc );
      }

      if ( ( events & EVENT_PERIOD_OTHER ) != 0 ) {
        sc = rtems_rate_monotonic_period( ctx->other_period_id, 2 );
        T_rsc_success( sc );

        sc = rtems_rate_monotonic_period( ctx->other_period_id, 2 );
        T_rsc_success( sc );
      }
    }
  }
test-target: testsuites/validation/tc-ratemon-timeout.c
test-teardown:
  brief: null
  code: |
    rtems_status_code sc;

    DeleteTask( ctx->worker_id );

    sc = rtems_rate_monotonic_delete( ctx->period_id );
    T_rsc_success( sc );

    sc = rtems_rate_monotonic_delete( ctx->other_period_id );
    T_rsc_success( sc );
  description: null
text: |
  When the rate monotonic period timer expires.
transition-map:
- enabled-by: true
  post-conditions:
    PostponedJobs:
    - if:
        pre-conditions:
          PostponedJobs:
          - Zero
          - NotZeroOrMax
      then: PlusOne
    - else: Nop
    ReleaseJob: 'No'
    Unblock: 'No'
    PeriodState: Expired
    Timer: Active
    Uptime: Nop
    CPUUsage: Nop
  pre-conditions:
    WaitFor:
    - PeriodOther
    - Other
    WaitState: N/A
    PostponedJobs: all
- enabled-by: true
  post-conditions:
    PostponedJobs: Nop
    ReleaseJob: 'Yes'
    Unblock:
    - if:
        pre-conditions:
          WaitState:
          - IntendToBlock
      then: 'No'
    - else: 'Yes'
    PeriodState: Active
    Timer: Active
    Uptime: Set
    CPUUsage: Set
  pre-conditions:
    WaitFor:
    - PeriodSelf
    WaitState: all
    PostponedJobs: all
- enabled-by: true
  post-conditions: WaitForPeriodZeroPostponedJobs
  pre-conditions:
    WaitFor:
    - PeriodSelf
    WaitState: all
    PostponedJobs:
    - NotZeroOrMax
    - Max
type: requirement