162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
262306a36Sopenharmony_ci
362306a36Sopenharmony_ci/*
462306a36Sopenharmony_ci * This file contains prototypes provided by each m68k machine
562306a36Sopenharmony_ci * to parse bootinfo data structures and to configure the machine
662306a36Sopenharmony_ci */
762306a36Sopenharmony_ci
862306a36Sopenharmony_ci#ifndef _M68K_CONFIG_H
962306a36Sopenharmony_ci#define _M68K_CONFIG_H
1062306a36Sopenharmony_ci
1162306a36Sopenharmony_ciextern int amiga_parse_bootinfo(const struct bi_record *record);
1262306a36Sopenharmony_ciextern int apollo_parse_bootinfo(const struct bi_record *record);
1362306a36Sopenharmony_ciextern int atari_parse_bootinfo(const struct bi_record *record);
1462306a36Sopenharmony_ciextern int bvme6000_parse_bootinfo(const struct bi_record *record);
1562306a36Sopenharmony_ciextern int hp300_parse_bootinfo(const struct bi_record *record);
1662306a36Sopenharmony_ciextern int mac_parse_bootinfo(const struct bi_record *record);
1762306a36Sopenharmony_ciextern int mvme147_parse_bootinfo(const struct bi_record *record);
1862306a36Sopenharmony_ciextern int mvme16x_parse_bootinfo(const struct bi_record *record);
1962306a36Sopenharmony_ciextern int q40_parse_bootinfo(const struct bi_record *record);
2062306a36Sopenharmony_ciextern int virt_parse_bootinfo(const struct bi_record *record);
2162306a36Sopenharmony_ci
2262306a36Sopenharmony_ciextern void config_amiga(void);
2362306a36Sopenharmony_ciextern void config_apollo(void);
2462306a36Sopenharmony_ciextern void config_atari(void);
2562306a36Sopenharmony_ciextern void config_bvme6000(void);
2662306a36Sopenharmony_ciextern void config_hp300(void);
2762306a36Sopenharmony_ciextern void config_mac(void);
2862306a36Sopenharmony_ciextern void config_mvme147(void);
2962306a36Sopenharmony_ciextern void config_mvme16x(void);
3062306a36Sopenharmony_ciextern void config_q40(void);
3162306a36Sopenharmony_ciextern void config_sun3(void);
3262306a36Sopenharmony_ciextern void config_sun3x(void);
3362306a36Sopenharmony_ciextern void config_virt(void);
3462306a36Sopenharmony_ci
3562306a36Sopenharmony_ci#endif /* _M68K_CONFIG_H */
36