^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /* SPDX-License-Identifier: GPL-2.0-only */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) * OMAP2 CPU identification code
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) * Copyright (C) 2010 Kan-Ru Chen <kanru@0xlab.org>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) #ifndef OMAP2_ARCH_ID_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) #define OMAP2_ARCH_ID_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) struct omap_die_id {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) u32 id_0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) u32 id_1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) u32 id_2;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) u32 id_3;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) void omap_get_die_id(struct omap_die_id *odi);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #endif