Blame view

RIOT/boards/qemu-i386/x86_board_lpm.c 870 Bytes
fb11e647   vrobic   reseau statique a...
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
  /*
   * Copyright (C) 2014  René Kijewski  <rene.kijewski@fu-berlin.de>
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @ingroup     boards_qemu-i386
   * @{
   *
   * @file
   * @brief       Low-power mode emulation for qemu-i386.
   *
   * @author      René Kijewski <rene.kijewski@fu-berlin.de>
   *
   * @}
   */
  
  #include "lpm.h"
  #include "x86_reboot.h"
  
  void lpm_init(void)
  {
      /* void */
  }
  
  enum lpm_mode lpm_set(enum lpm_mode target)
  {
      if (target != LPM_ON) {
          if (target == LPM_POWERDOWN) {
              x86_shutdown();
          }
          __asm__ volatile ("hlt");
      }
      return LPM_UNKNOWN;
  }
  
  void lpm_awake(void)
  {
      /* void */
  }
  
  void lpm_begin_awake(void)
  {
      /* void */
  }
  
  void lpm_end_awake(void)
  {
      /* void */
  }