Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
drivers
gpu
drm
nouveau
core
subdev
therm
priv.h
Go to the documentation of this file.
1
/*
2
* Copyright 2012 The Nouveau community
3
*
4
* Permission is hereby granted, free of charge, to any person obtaining a
5
* copy of this software and associated documentation files (the "Software"),
6
* to deal in the Software without restriction, including without limitation
7
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
8
* and/or sell copies of the Software, and to permit persons to whom the
9
* Software is furnished to do so, subject to the following conditions:
10
*
11
* The above copyright notice and this permission notice shall be included in
12
* all copies or substantial portions of the Software.
13
*
14
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20
* OTHER DEALINGS IN THE SOFTWARE.
21
*
22
* Authors: Martin Peres
23
*/
24
25
#include <
subdev/therm.h
>
26
27
#include <
subdev/bios/extdev.h
>
28
#include <
subdev/bios/perf.h
>
29
#include <
subdev/bios/therm.h
>
30
31
struct
nouveau_therm_priv
{
32
struct
nouveau_therm
base
;
33
34
/* bios */
35
struct
nvbios_therm_sensor
bios_sensor
;
36
struct
nvbios_therm_fan
bios_fan
;
37
struct
nvbios_perf_fan
bios_perf_fan
;
38
39
/* fan priv */
40
struct
{
41
enum
nouveau_therm_fan_mode
mode
;
42
int
percent
;
43
44
int
(*
pwm_get
)(
struct
nouveau_therm
*,
int
line
,
u32
*,
u32
*);
45
int
(*
pwm_set
)(
struct
nouveau_therm
*,
int
line
,
u32
,
u32
);
46
int
(*
pwm_clock
)(
struct
nouveau_therm
*);
47
}
fan
;
48
49
/* ic */
50
struct
i2c_client
*
ic
;
51
};
52
53
int
nouveau_therm_init
(
struct
nouveau_object
*
object
);
54
int
nouveau_therm_fini
(
struct
nouveau_object
*
object
,
bool
suspend
);
55
int
nouveau_therm_attr_get
(
struct
nouveau_therm
*
therm
,
56
enum
nouveau_therm_attr_type
type
);
57
int
nouveau_therm_attr_set
(
struct
nouveau_therm
*
therm
,
58
enum
nouveau_therm_attr_type
type
,
int
value
);
59
60
void
nouveau_therm_ic_ctor
(
struct
nouveau_therm
*
therm
);
61
62
int
nouveau_therm_sensor_ctor
(
struct
nouveau_therm
*
therm
);
63
64
int
nouveau_therm_fan_ctor
(
struct
nouveau_therm
*
therm
);
65
int
nouveau_therm_fan_get
(
struct
nouveau_therm
*
therm
);
66
int
nouveau_therm_fan_set
(
struct
nouveau_therm
*
therm
,
int
percent
);
67
int
nouveau_therm_fan_user_get
(
struct
nouveau_therm
*
therm
);
68
int
nouveau_therm_fan_user_set
(
struct
nouveau_therm
*
therm
,
int
percent
);
69
int
nouveau_therm_fan_set_mode
(
struct
nouveau_therm
*
therm
,
70
enum
nouveau_therm_fan_mode
mode
);
71
72
73
int
nouveau_therm_fan_sense
(
struct
nouveau_therm
*
therm
);
Generated on Thu Jan 10 2013 13:32:43 for Linux Kernel by
1.8.2