Blame view

include/asm-powerpc/hvconsole.h 1.37 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  /*
   * hvconsole.h
   * Copyright (C) 2004 Ryan S Arnold, IBM Corporation
   *
   * LPAR console support.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   */
  
  #ifndef _PPC64_HVCONSOLE_H
  #define _PPC64_HVCONSOLE_H
88ced0314   Arnd Bergmann   [PATCH] powerpc: ...
24
  #ifdef __KERNEL__
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
  
  /*
45d607ed9   Ryan S. Arnold   [PATCH] powerpc: ...
27
28
   * PSeries firmware will only send/recv up to 16 bytes of character data per
   * hcall.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
   */
45d607ed9   Ryan S. Arnold   [PATCH] powerpc: ...
30
31
  #define MAX_VIO_PUT_CHARS	16
  #define SIZE_VIO_GET_CHARS	16
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32

45d607ed9   Ryan S. Arnold   [PATCH] powerpc: ...
33
34
35
36
  /*
   * Vio firmware always attempts to fetch MAX_VIO_GET_CHARS chars.  The 'count'
   * parm is included to conform to put_chars() function pointer template
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
38
  extern int hvc_get_chars(uint32_t vtermno, char *buf, int count);
  extern int hvc_put_chars(uint32_t vtermno, const char *buf, int count);
88ced0314   Arnd Bergmann   [PATCH] powerpc: ...
39
  #endif /* __KERNEL__ */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
  #endif /* _PPC64_HVCONSOLE_H */