1*c20963adSAndrew Turner /*- 2*c20963adSAndrew Turner * Copyright (c) 2017 Andrew Turner 3*c20963adSAndrew Turner * All rights reserved. 4*c20963adSAndrew Turner * 5*c20963adSAndrew Turner * Redistribution and use in source and binary forms, with or without 6*c20963adSAndrew Turner * modification, are permitted provided that the following conditions 7*c20963adSAndrew Turner * are met: 8*c20963adSAndrew Turner * 1. Redistributions of source code must retain the above copyright 9*c20963adSAndrew Turner * notice, this list of conditions and the following disclaimer. 10*c20963adSAndrew Turner * 2. Redistributions in binary form must reproduce the above copyright 11*c20963adSAndrew Turner * notice, this list of conditions and the following disclaimer in the 12*c20963adSAndrew Turner * documentation and/or other materials provided with the distribution. 13*c20963adSAndrew Turner * 14*c20963adSAndrew Turner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15*c20963adSAndrew Turner * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*c20963adSAndrew Turner * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*c20963adSAndrew Turner * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18*c20963adSAndrew Turner * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*c20963adSAndrew Turner * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*c20963adSAndrew Turner * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*c20963adSAndrew Turner * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*c20963adSAndrew Turner * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*c20963adSAndrew Turner * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*c20963adSAndrew Turner * SUCH DAMAGE. 25*c20963adSAndrew Turner */ 26*c20963adSAndrew Turner 27*c20963adSAndrew Turner #ifndef _ANNAPURNA_ALPINE_MP_H_ 28*c20963adSAndrew Turner #define _ANNAPURNA_ALPINE_MP_H_ 29*c20963adSAndrew Turner 30*c20963adSAndrew Turner void alpine_mp_start_ap(platform_t plat); 31*c20963adSAndrew Turner void alpine_mp_setmaxid(platform_t plat); 32*c20963adSAndrew Turner 33*c20963adSAndrew Turner #endif /* _ANNAPURNA_ALPINE_MP_H_ */ 34