Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * OMAP2 CPU identification code
0004  *
0005  * Copyright (C) 2010 Kan-Ru Chen <kanru@0xlab.org>
0006  */
0007 #ifndef OMAP2_ARCH_ID_H
0008 #define OMAP2_ARCH_ID_H
0009 
0010 struct omap_die_id {
0011     u32 id_0;
0012     u32 id_1;
0013     u32 id_2;
0014     u32 id_3;
0015 };
0016 
0017 void omap_get_die_id(struct omap_die_id *odi);
0018 
0019 #endif