116a1c0a8SAndrew Turner /*- 216a1c0a8SAndrew Turner * Copyright (c) 2015 The FreeBSD Foundation 316a1c0a8SAndrew Turner * 416a1c0a8SAndrew Turner * This software was developed by Andrew Turner under 516a1c0a8SAndrew Turner * sponsorship from the FreeBSD Foundation. 616a1c0a8SAndrew Turner * 716a1c0a8SAndrew Turner * Redistribution and use in source and binary forms, with or without 816a1c0a8SAndrew Turner * modification, are permitted provided that the following conditions 916a1c0a8SAndrew Turner * are met: 1016a1c0a8SAndrew Turner * 1. Redistributions of source code must retain the above copyright 1116a1c0a8SAndrew Turner * notice, this list of conditions and the following disclaimer. 1216a1c0a8SAndrew Turner * 2. Redistributions in binary form must reproduce the above copyright 1316a1c0a8SAndrew Turner * notice, this list of conditions and the following disclaimer in the 1416a1c0a8SAndrew Turner * documentation and/or other materials provided with the distribution. 1516a1c0a8SAndrew Turner * 1616a1c0a8SAndrew Turner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 1716a1c0a8SAndrew Turner * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1816a1c0a8SAndrew Turner * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1916a1c0a8SAndrew Turner * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 2016a1c0a8SAndrew Turner * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2116a1c0a8SAndrew Turner * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2216a1c0a8SAndrew Turner * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2316a1c0a8SAndrew Turner * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2416a1c0a8SAndrew Turner * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2516a1c0a8SAndrew Turner * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2616a1c0a8SAndrew Turner * SUCH DAMAGE. 2716a1c0a8SAndrew Turner */ 2816a1c0a8SAndrew Turner 2916a1c0a8SAndrew Turner #ifndef _DEV_OFW_OFW_CPU_H_ 3016a1c0a8SAndrew Turner #define _DEV_OFW_OFW_CPU_H_ 3116a1c0a8SAndrew Turner 32afdb4298SJohn Baldwin typedef bool (*ofw_cpu_foreach_cb)(u_int, phandle_t, u_int, pcell_t *); 33*609cdb12SMitchell Horne int ofw_cpu_early_foreach(ofw_cpu_foreach_cb, bool); 3416a1c0a8SAndrew Turner 3516a1c0a8SAndrew Turner #endif /* _DEV_OFW_OFW_CPU_H_ */ 36