1 // SPDX-License-Identifier: GPL-2.0-only
3 * Windfarm PowerMac thermal control. iMac G5 iSight
5 * (c) Copyright 2007 Étienne Bersac <bersace@gmail.com>
7 * Bits & pieces from windfarm_pm81.c by (c) Copyright 2005 Benjamin
8 * Herrenschmidt, IBM Corp. <benh@kernel.crashing.org>
13 * The algorithm used is the PID control algorithm, used the same way
14 * the published Darwin code does, using the same values that are
15 * present in the Darwin 8.10 snapshot property lists (note however
16 * that none of the code has been re-used, it's a complete
19 * There is two models using PowerMac12,1. Model 2 is iMac G5 iSight
20 * 17" while Model 3 is iMac G5 20". They do have both the same
21 * controls with a tiny difference. The control-ids of hard-drive-fan
22 * and cpu-fan is swapped.
26 * controls have a target correction calculated as :
28 * new_min = ((((average_power * slope) >> 16) + offset) >> 16) + min_value
29 * new_value = max(new_value, max(new_min, 0))
31 * OD Fan control correction.
41 * HD Fan control correction.
51 * CPU Fan control correction.
61 * Target rubber-banding :
63 * Some controls have a target correction which depends on another
64 * control value. The correction is computed in the following way :
66 * new_min = ref_value * slope + offset
68 * ref_value is the value of the reference control. If new_min is
69 * greater than 0, then we correct the target value using :
71 * new_target = max (new_target, new_min >> 16)
75 * ref : optical-drive-fan
80 * control : optical-drive-fan
81 * ref : hard-drive-fan
85 * In order to have the moste efficient correction with those
86 * dependencies, we must trigger HD loop before OD loop before CPU
89 * The various control loops found in Darwin config file are:
91 * HD Fan control loop.
94 * control : hard-drive-fan
95 * sensor : hard-drive-temp
96 * PID params : G_d = 0x00000000
100 * Input target = 0x370000
104 * control : hard-drive-fan
105 * sensor : hard-drive-temp
106 * PID params : G_d = 0x00000000
109 * History = 2 entries
110 * Input target = 0x370000
113 * OD Fan control loop.
116 * control : optical-drive-fan
117 * sensor : optical-drive-temp
118 * PID params : G_d = 0x00000000
121 * History = 2 entries
122 * Input target = 0x320000
126 * control : optical-drive-fan
127 * sensor : optical-drive-temp
128 * PID params : G_d = 0x00000000
131 * History = 2 entries
132 * Input target = 0x320000
135 * GPU Fan control loop.
138 * control : hard-drive-fan
140 * PID params : G_d = 0x00000000
143 * History = 2 entries
144 * Input target = 0x5A0000
150 * PID params : G_d = 0x00000000
153 * History = 2 entries
154 * Input target = 0x500000
157 * KODIAK (aka northbridge) Fan control loop.
160 * control : optical-drive-fan
161 * sensor : north-bridge-temp
162 * PID params : G_d = 0x00000000
165 * History = 2 entries
166 * Input target = 0x550000
170 * control : hard-drive-fan
171 * sensor : north-bridge-temp
172 * PID params : G_d = 0x00000000
175 * History = 2 entries
176 * Input target = 0x550000
179 * CPU Fan control loop.
182 * sensors : cpu-temp, cpu-power
183 * PID params : from SDB partition
185 * CPU Slew control loop.
187 * control : cpufreq-clamp
193 #include <linux/types.h>
194 #include <linux/errno.h>
195 #include <linux/kernel.h>
196 #include <linux/delay.h>
197 #include <linux/slab.h>
198 #include <linux/init.h>
199 #include <linux/spinlock.h>
200 #include <linux/wait.h>
201 #include <linux/kmod.h>
202 #include <linux/device.h>
203 #include <linux/platform_device.h>
204 #include <linux/of.h>
206 #include <asm/machdep.h>
208 #include <asm/sections.h>
211 #include "windfarm.h"
212 #include "windfarm_pid.h"
214 #define VERSION "0.3"
216 static int pm121_mach_model
; /* machine model id */
218 /* Controls & sensors */
219 static struct wf_sensor
*sensor_cpu_power
;
220 static struct wf_sensor
*sensor_cpu_temp
;
221 static struct wf_sensor
*sensor_cpu_voltage
;
222 static struct wf_sensor
*sensor_cpu_current
;
223 static struct wf_sensor
*sensor_gpu_temp
;
224 static struct wf_sensor
*sensor_north_bridge_temp
;
225 static struct wf_sensor
*sensor_hard_drive_temp
;
226 static struct wf_sensor
*sensor_optical_drive_temp
;
227 static struct wf_sensor
*sensor_incoming_air_temp
; /* unused ! */
236 static struct wf_control
*controls
[N_CONTROLS
] = {};
238 /* Set to kick the control loop into life */
239 static int pm121_all_controls_ok
, pm121_all_sensors_ok
;
240 static bool pm121_started
;
243 FAILURE_FAN
= 1 << 0,
244 FAILURE_SENSOR
= 1 << 1,
245 FAILURE_OVERTEMP
= 1 << 2
248 /* All sys loops. Note the HD before the OD loop in order to have it
251 LOOP_GPU
, /* control = hd or cpu, but luckily,
253 LOOP_HD
, /* control = hd */
254 LOOP_KODIAK
, /* control = hd or od */
255 LOOP_OD
, /* control = od */
259 static const char *loop_names
[N_LOOPS
] = {
266 #define PM121_NUM_CONFIGS 2
268 static unsigned int pm121_failure_state
;
269 static int pm121_readjust
, pm121_skipping
;
270 static bool pm121_overtemp
;
271 static s32 average_power
;
273 struct pm121_correction
{
278 static struct pm121_correction corrections
[N_CONTROLS
][PM121_NUM_CONFIGS
] = {
282 { .offset
= -19563152,
286 { .offset
= -15650652,
293 { .offset
= -15650652,
297 { .offset
= -19563152,
304 { .offset
= -25431900,
308 { .offset
= -15650652,
312 /* CPUFREQ has no correction (and is not implemented at all) */
315 struct pm121_connection
{
316 unsigned int control_id
;
318 struct pm121_correction correction
;
321 static struct pm121_connection pm121_connections
[] = {
323 { .control_id
= FAN_CPU
,
325 { .offset
= -32768000,
330 { .control_id
= FAN_OD
,
332 { .offset
= -32768000,
338 /* pointer to the current model connection */
339 static struct pm121_connection
*pm121_connection
;
342 * ****** System Fans Control Loop ******
346 /* Since each loop handles only one control and we want to avoid
347 * writing virtual control, we store the control correction with the
348 * loop params. Some data are not set, there are common to all loop
349 * and thus, hardcoded.
351 struct pm121_sys_param
{
352 /* purely informative since we use mach_model-2 as index */
354 struct wf_sensor
**sensor
; /* use sensor_id instead ? */
356 unsigned int control_id
;
359 static struct pm121_sys_param
360 pm121_sys_all_params
[N_LOOPS
][PM121_NUM_CONFIGS
] = {
361 /* GPU Fan control loop */
364 .sensor
= &sensor_gpu_temp
,
367 .control_id
= FAN_HD
,
370 .sensor
= &sensor_gpu_temp
,
373 .control_id
= FAN_CPU
,
376 /* HD Fan control loop */
379 .sensor
= &sensor_hard_drive_temp
,
382 .control_id
= FAN_HD
,
385 .sensor
= &sensor_hard_drive_temp
,
388 .control_id
= FAN_HD
,
391 /* KODIAK Fan control loop */
394 .sensor
= &sensor_north_bridge_temp
,
397 .control_id
= FAN_OD
,
400 .sensor
= &sensor_north_bridge_temp
,
403 .control_id
= FAN_HD
,
406 /* OD Fan control loop */
409 .sensor
= &sensor_optical_drive_temp
,
412 .control_id
= FAN_OD
,
415 .sensor
= &sensor_optical_drive_temp
,
418 .control_id
= FAN_OD
,
423 /* the hardcoded values */
424 #define PM121_SYS_GD 0x00000000
425 #define PM121_SYS_GR 0x00019999
426 #define PM121_SYS_HISTORY_SIZE 2
427 #define PM121_SYS_INTERVAL 5
429 /* State data used by the system fans control loop
431 struct pm121_sys_state
{
434 struct wf_pid_state pid
;
437 static struct pm121_sys_state
*pm121_sys_state
[N_LOOPS
] = {};
440 * ****** CPU Fans Control Loop ******
444 #define PM121_CPU_INTERVAL 1
446 /* State data used by the cpu fans control loop
448 struct pm121_cpu_state
{
451 struct wf_cpu_pid_state pid
;
454 static struct pm121_cpu_state
*pm121_cpu_state
;
459 * ***** Implementation *****
463 /* correction the value using the output-low-bound correction algo */
464 static s32
pm121_correct(s32 new_setpoint
,
465 unsigned int control_id
,
469 struct pm121_correction
*correction
;
470 correction
= &corrections
[control_id
][pm121_mach_model
- 2];
472 new_min
= (average_power
* correction
->slope
) >> 16;
473 new_min
+= correction
->offset
;
474 new_min
= (new_min
>> 16) + min
;
476 return max3(new_setpoint
, new_min
, 0);
479 static s32
pm121_connect(unsigned int control_id
, s32 setpoint
)
481 s32 new_min
, value
, new_setpoint
;
483 if (pm121_connection
->control_id
== control_id
) {
484 controls
[control_id
]->ops
->get_value(controls
[control_id
],
486 new_min
= value
* pm121_connection
->correction
.slope
;
487 new_min
+= pm121_connection
->correction
.offset
;
489 new_setpoint
= max(setpoint
, (new_min
>> 16));
490 if (new_setpoint
!= setpoint
) {
491 pr_debug("pm121: %s depending on %s, "
492 "corrected from %d to %d RPM\n",
493 controls
[control_id
]->name
,
494 controls
[pm121_connection
->ref_id
]->name
,
495 (int) setpoint
, (int) new_setpoint
);
498 new_setpoint
= setpoint
;
502 new_setpoint
= setpoint
;
508 static void pm121_create_sys_fans(int loop_id
)
510 struct pm121_sys_param
*param
= NULL
;
511 struct wf_pid_param pid_param
;
512 struct wf_control
*control
= NULL
;
515 /* First, locate the params for this model */
516 for (i
= 0; i
< PM121_NUM_CONFIGS
; i
++) {
517 if (pm121_sys_all_params
[loop_id
][i
].model_id
== pm121_mach_model
) {
518 param
= &(pm121_sys_all_params
[loop_id
][i
]);
523 /* No params found, put fans to max */
525 printk(KERN_WARNING
"pm121: %s fan config not found "
526 " for this machine model\n",
527 loop_names
[loop_id
]);
531 control
= controls
[param
->control_id
];
533 /* Alloc & initialize state */
534 pm121_sys_state
[loop_id
] = kmalloc(sizeof(struct pm121_sys_state
),
536 if (pm121_sys_state
[loop_id
] == NULL
) {
537 printk(KERN_WARNING
"pm121: Memory allocation error\n");
540 pm121_sys_state
[loop_id
]->ticks
= 1;
542 /* Fill PID params */
543 pid_param
.gd
= PM121_SYS_GD
;
544 pid_param
.gp
= param
->gp
;
545 pid_param
.gr
= PM121_SYS_GR
;
546 pid_param
.interval
= PM121_SYS_INTERVAL
;
547 pid_param
.history_len
= PM121_SYS_HISTORY_SIZE
;
548 pid_param
.itarget
= param
->itarget
;
551 pid_param
.min
= control
->ops
->get_min(control
);
552 pid_param
.max
= control
->ops
->get_max(control
);
555 * This is probably not the right!?
556 * Perhaps goto fail if control == NULL above?
562 wf_pid_init(&pm121_sys_state
[loop_id
]->pid
, &pid_param
);
564 pr_debug("pm121: %s Fan control loop initialized.\n"
565 " itarged=%d.%03d, min=%d RPM, max=%d RPM\n",
566 loop_names
[loop_id
], FIX32TOPRINT(pid_param
.itarget
),
567 pid_param
.min
, pid_param
.max
);
571 /* note that this is not optimal since another loop may still
572 control the same control */
573 printk(KERN_WARNING
"pm121: failed to set up %s loop "
574 "setting \"%s\" to max speed.\n",
575 loop_names
[loop_id
], control
? control
->name
: "uninitialized value");
578 wf_control_set_max(control
);
581 static void pm121_sys_fans_tick(int loop_id
)
583 struct pm121_sys_param
*param
;
584 struct pm121_sys_state
*st
;
585 struct wf_sensor
*sensor
;
586 struct wf_control
*control
;
587 s32 temp
, new_setpoint
;
590 param
= &(pm121_sys_all_params
[loop_id
][pm121_mach_model
-2]);
591 st
= pm121_sys_state
[loop_id
];
592 sensor
= *(param
->sensor
);
593 control
= controls
[param
->control_id
];
595 if (--st
->ticks
!= 0) {
600 st
->ticks
= PM121_SYS_INTERVAL
;
602 rc
= sensor
->ops
->get_value(sensor
, &temp
);
604 printk(KERN_WARNING
"windfarm: %s sensor error %d\n",
606 pm121_failure_state
|= FAILURE_SENSOR
;
610 pr_debug("pm121: %s Fan tick ! %s: %d.%03d\n",
611 loop_names
[loop_id
], sensor
->name
,
614 new_setpoint
= wf_pid_run(&st
->pid
, temp
);
617 new_setpoint
= pm121_correct(new_setpoint
,
620 /* linked corretion */
621 new_setpoint
= pm121_connect(param
->control_id
, new_setpoint
);
623 if (new_setpoint
== st
->setpoint
)
625 st
->setpoint
= new_setpoint
;
626 pr_debug("pm121: %s corrected setpoint: %d RPM\n",
627 control
->name
, (int)new_setpoint
);
629 if (control
&& pm121_failure_state
== 0) {
630 rc
= control
->ops
->set_value(control
, st
->setpoint
);
632 printk(KERN_WARNING
"windfarm: %s fan error %d\n",
634 pm121_failure_state
|= FAILURE_FAN
;
641 static void pm121_create_cpu_fans(void)
643 struct wf_cpu_pid_param pid_param
;
644 const struct smu_sdbp_header
*hdr
;
645 struct smu_sdbp_cpupiddata
*piddata
;
646 struct smu_sdbp_fvt
*fvt
;
647 struct wf_control
*fan_cpu
;
648 s32 tmax
, tdelta
, maxpow
, powadj
;
650 fan_cpu
= controls
[FAN_CPU
];
652 /* First, locate the PID params in SMU SBD */
653 hdr
= smu_get_sdb_partition(SMU_SDB_CPUPIDDATA_ID
, NULL
);
655 printk(KERN_WARNING
"pm121: CPU PID fan config not found.\n");
658 piddata
= (struct smu_sdbp_cpupiddata
*)&hdr
[1];
660 /* Get the FVT params for operating point 0 (the only supported one
661 * for now) in order to get tmax
663 hdr
= smu_get_sdb_partition(SMU_SDB_FVT_ID
, NULL
);
665 fvt
= (struct smu_sdbp_fvt
*)&hdr
[1];
666 tmax
= ((s32
)fvt
->maxtemp
) << 16;
668 tmax
= 0x5e0000; /* 94 degree default */
670 /* Alloc & initialize state */
671 pm121_cpu_state
= kmalloc(sizeof(struct pm121_cpu_state
),
673 if (pm121_cpu_state
== NULL
)
675 pm121_cpu_state
->ticks
= 1;
677 /* Fill PID params */
678 pid_param
.interval
= PM121_CPU_INTERVAL
;
679 pid_param
.history_len
= piddata
->history_len
;
680 if (pid_param
.history_len
> WF_CPU_PID_MAX_HISTORY
) {
681 printk(KERN_WARNING
"pm121: History size overflow on "
682 "CPU control loop (%d)\n", piddata
->history_len
);
683 pid_param
.history_len
= WF_CPU_PID_MAX_HISTORY
;
685 pid_param
.gd
= piddata
->gd
;
686 pid_param
.gp
= piddata
->gp
;
687 pid_param
.gr
= piddata
->gr
/ pid_param
.history_len
;
689 tdelta
= ((s32
)piddata
->target_temp_delta
) << 16;
690 maxpow
= ((s32
)piddata
->max_power
) << 16;
691 powadj
= ((s32
)piddata
->power_adj
) << 16;
693 pid_param
.tmax
= tmax
;
694 pid_param
.ttarget
= tmax
- tdelta
;
695 pid_param
.pmaxadj
= maxpow
- powadj
;
697 pid_param
.min
= fan_cpu
->ops
->get_min(fan_cpu
);
698 pid_param
.max
= fan_cpu
->ops
->get_max(fan_cpu
);
700 wf_cpu_pid_init(&pm121_cpu_state
->pid
, &pid_param
);
702 pr_debug("pm121: CPU Fan control initialized.\n");
703 pr_debug(" ttarget=%d.%03d, tmax=%d.%03d, min=%d RPM, max=%d RPM,\n",
704 FIX32TOPRINT(pid_param
.ttarget
), FIX32TOPRINT(pid_param
.tmax
),
705 pid_param
.min
, pid_param
.max
);
710 printk(KERN_WARNING
"pm121: CPU fan config not found, max fan speed\n");
712 if (controls
[CPUFREQ
])
713 wf_control_set_max(controls
[CPUFREQ
]);
715 wf_control_set_max(fan_cpu
);
719 static void pm121_cpu_fans_tick(struct pm121_cpu_state
*st
)
721 s32 new_setpoint
, temp
, power
;
722 struct wf_control
*fan_cpu
= NULL
;
725 if (--st
->ticks
!= 0) {
730 st
->ticks
= PM121_CPU_INTERVAL
;
732 fan_cpu
= controls
[FAN_CPU
];
734 rc
= sensor_cpu_temp
->ops
->get_value(sensor_cpu_temp
, &temp
);
736 printk(KERN_WARNING
"pm121: CPU temp sensor error %d\n",
738 pm121_failure_state
|= FAILURE_SENSOR
;
742 rc
= sensor_cpu_power
->ops
->get_value(sensor_cpu_power
, &power
);
744 printk(KERN_WARNING
"pm121: CPU power sensor error %d\n",
746 pm121_failure_state
|= FAILURE_SENSOR
;
750 pr_debug("pm121: CPU Fans tick ! CPU temp: %d.%03d°C, power: %d.%03d\n",
751 FIX32TOPRINT(temp
), FIX32TOPRINT(power
));
753 if (temp
> st
->pid
.param
.tmax
)
754 pm121_failure_state
|= FAILURE_OVERTEMP
;
756 new_setpoint
= wf_cpu_pid_run(&st
->pid
, power
, temp
);
759 new_setpoint
= pm121_correct(new_setpoint
,
763 /* connected correction */
764 new_setpoint
= pm121_connect(FAN_CPU
, new_setpoint
);
766 if (st
->setpoint
== new_setpoint
)
768 st
->setpoint
= new_setpoint
;
769 pr_debug("pm121: CPU corrected setpoint: %d RPM\n", (int)new_setpoint
);
772 if (fan_cpu
&& pm121_failure_state
== 0) {
773 rc
= fan_cpu
->ops
->set_value(fan_cpu
, st
->setpoint
);
775 printk(KERN_WARNING
"pm121: %s fan error %d\n",
777 pm121_failure_state
|= FAILURE_FAN
;
783 * ****** Common ******
787 static void pm121_tick(void)
789 unsigned int last_failure
= pm121_failure_state
;
790 unsigned int new_failure
;
794 if (!pm121_started
) {
795 pr_debug("pm121: creating control loops !\n");
796 for (i
= 0; i
< N_LOOPS
; i
++)
797 pm121_create_sys_fans(i
);
799 pm121_create_cpu_fans();
800 pm121_started
= true;
804 if (pm121_skipping
&& --pm121_skipping
)
807 /* compute average power */
809 for (i
= 0; i
< pm121_cpu_state
->pid
.param
.history_len
; i
++)
810 total_power
+= pm121_cpu_state
->pid
.powers
[i
];
812 average_power
= total_power
/ pm121_cpu_state
->pid
.param
.history_len
;
815 pm121_failure_state
= 0;
816 for (i
= 0 ; i
< N_LOOPS
; i
++) {
817 if (pm121_sys_state
[i
])
818 pm121_sys_fans_tick(i
);
822 pm121_cpu_fans_tick(pm121_cpu_state
);
825 new_failure
= pm121_failure_state
& ~last_failure
;
827 /* If entering failure mode, clamp cpufreq and ramp all
828 * fans to full speed.
830 if (pm121_failure_state
&& !last_failure
) {
831 for (i
= 0; i
< N_CONTROLS
; i
++) {
833 wf_control_set_max(controls
[i
]);
837 /* If leaving failure mode, unclamp cpufreq and readjust
838 * all fans on next iteration
840 if (!pm121_failure_state
&& last_failure
) {
841 if (controls
[CPUFREQ
])
842 wf_control_set_min(controls
[CPUFREQ
]);
846 /* Overtemp condition detected, notify and start skipping a couple
847 * ticks to let the temperature go down
849 if (new_failure
& FAILURE_OVERTEMP
) {
852 pm121_overtemp
= true;
855 /* We only clear the overtemp condition if overtemp is cleared
856 * _and_ no other failure is present. Since a sensor error will
857 * clear the overtemp condition (can't measure temperature) at
858 * the control loop levels, but we don't want to keep it clear
861 if (!pm121_failure_state
&& pm121_overtemp
) {
863 pm121_overtemp
= false;
868 static struct wf_control
* pm121_register_control(struct wf_control
*ct
,
872 if (controls
[id
] == NULL
&& !strcmp(ct
->name
, match
)) {
873 if (wf_get_control(ct
) == 0)
879 static void pm121_new_control(struct wf_control
*ct
)
883 if (pm121_all_controls_ok
)
886 all
= pm121_register_control(ct
, "optical-drive-fan", FAN_OD
) && all
;
887 all
= pm121_register_control(ct
, "hard-drive-fan", FAN_HD
) && all
;
888 all
= pm121_register_control(ct
, "cpu-fan", FAN_CPU
) && all
;
889 all
= pm121_register_control(ct
, "cpufreq-clamp", CPUFREQ
) && all
;
892 pm121_all_controls_ok
= 1;
898 static struct wf_sensor
* pm121_register_sensor(struct wf_sensor
*sensor
,
900 struct wf_sensor
**var
)
902 if (*var
== NULL
&& !strcmp(sensor
->name
, match
)) {
903 if (wf_get_sensor(sensor
) == 0)
909 static void pm121_new_sensor(struct wf_sensor
*sr
)
913 if (pm121_all_sensors_ok
)
916 all
= pm121_register_sensor(sr
, "cpu-temp",
917 &sensor_cpu_temp
) && all
;
918 all
= pm121_register_sensor(sr
, "cpu-current",
919 &sensor_cpu_current
) && all
;
920 all
= pm121_register_sensor(sr
, "cpu-voltage",
921 &sensor_cpu_voltage
) && all
;
922 all
= pm121_register_sensor(sr
, "cpu-power",
923 &sensor_cpu_power
) && all
;
924 all
= pm121_register_sensor(sr
, "hard-drive-temp",
925 &sensor_hard_drive_temp
) && all
;
926 all
= pm121_register_sensor(sr
, "optical-drive-temp",
927 &sensor_optical_drive_temp
) && all
;
928 all
= pm121_register_sensor(sr
, "incoming-air-temp",
929 &sensor_incoming_air_temp
) && all
;
930 all
= pm121_register_sensor(sr
, "north-bridge-temp",
931 &sensor_north_bridge_temp
) && all
;
932 all
= pm121_register_sensor(sr
, "gpu-temp",
933 &sensor_gpu_temp
) && all
;
936 pm121_all_sensors_ok
= 1;
941 static int pm121_notify(struct notifier_block
*self
,
942 unsigned long event
, void *data
)
945 case WF_EVENT_NEW_CONTROL
:
946 pr_debug("pm121: new control %s detected\n",
947 ((struct wf_control
*)data
)->name
);
948 pm121_new_control(data
);
950 case WF_EVENT_NEW_SENSOR
:
951 pr_debug("pm121: new sensor %s detected\n",
952 ((struct wf_sensor
*)data
)->name
);
953 pm121_new_sensor(data
);
956 if (pm121_all_controls_ok
&& pm121_all_sensors_ok
)
964 static struct notifier_block pm121_events
= {
965 .notifier_call
= pm121_notify
,
968 static int pm121_init_pm(void)
970 const struct smu_sdbp_header
*hdr
;
972 hdr
= smu_get_sdb_partition(SMU_SDB_SENSORTREE_ID
, NULL
);
974 struct smu_sdbp_sensortree
*st
=
975 (struct smu_sdbp_sensortree
*)&hdr
[1];
976 pm121_mach_model
= st
->model_id
;
979 pm121_connection
= &pm121_connections
[pm121_mach_model
- 2];
981 printk(KERN_INFO
"pm121: Initializing for iMac G5 iSight model ID %d\n",
988 static int pm121_probe(struct platform_device
*ddev
)
990 wf_register_client(&pm121_events
);
995 static void pm121_remove(struct platform_device
*ddev
)
997 wf_unregister_client(&pm121_events
);
1000 static struct platform_driver pm121_driver
= {
1001 .probe
= pm121_probe
,
1002 .remove
= pm121_remove
,
1005 .bus
= &platform_bus_type
,
1010 static int __init
pm121_init(void)
1014 if (of_machine_is_compatible("PowerMac12,1"))
1015 rc
= pm121_init_pm();
1018 request_module("windfarm_smu_controls");
1019 request_module("windfarm_smu_sensors");
1020 request_module("windfarm_smu_sat");
1021 request_module("windfarm_lm75_sensor");
1022 request_module("windfarm_max6690_sensor");
1023 request_module("windfarm_cpufreq_clamp");
1024 platform_driver_register(&pm121_driver
);
1030 static void __exit
pm121_exit(void)
1033 platform_driver_unregister(&pm121_driver
);
1037 module_init(pm121_init
);
1038 module_exit(pm121_exit
);
1040 MODULE_AUTHOR("Étienne Bersac <bersace@gmail.com>");
1041 MODULE_DESCRIPTION("Thermal control logic for iMac G5 (iSight)");
1042 MODULE_LICENSE("GPL");