/*-
* Copyright (c) 2021 Michael Lorenz
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* XXX this is guesswork based on poking around & observation
*
* the parameter format seems to be:
* reg[0] - node number for the fan, or pointer into OF space
* reg[1] - 0x08000000
* reg[2] - 0x0000001a - varies with different platform-do-*
* reg[3] - register number in obio space
* reg[4] - bitmask in the register
* reg[5] - unknown
* reg[6] - unknown
*/
/* now look for which fan register(s) we can use */
f = OF_child(node);
cnt = 0;
while (f != 0) {
int num = -1;
OF_getprop(f, "reg", &num, 4);
if (OF_getprop(f, "hwctrl-location", descr, 32) <= 0)
goto skip;
sc->sc_reg[cnt] = tc_regs[num * 7 + 3];
sc->sc_shift[cnt] = ffs(tc_regs[num * 7 + 4]) - 1;