18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * OMAP2 CPU identification code 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Copyright (C) 2010 Kan-Ru Chen <kanru@0xlab.org> 68c2ecf20Sopenharmony_ci */ 78c2ecf20Sopenharmony_ci#ifndef OMAP2_ARCH_ID_H 88c2ecf20Sopenharmony_ci#define OMAP2_ARCH_ID_H 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_cistruct omap_die_id { 118c2ecf20Sopenharmony_ci u32 id_0; 128c2ecf20Sopenharmony_ci u32 id_1; 138c2ecf20Sopenharmony_ci u32 id_2; 148c2ecf20Sopenharmony_ci u32 id_3; 158c2ecf20Sopenharmony_ci}; 168c2ecf20Sopenharmony_ci 178c2ecf20Sopenharmony_civoid omap_get_die_id(struct omap_die_id *odi); 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_ci#endif 20