OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
arm
/
include
/
asm
/
hardware
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
cache-feroceon-l2.h
398 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
cache-l2x0.h
6.69 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
cache-tauros2.h
441 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
cache-uniphier.h
867 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
cp14.h
24.97 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
dec21285.h
5.44 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
entry-macro-iomd.S
5.79 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ioc.h
1.66 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
iomd.h
4.27 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
iop3xx-adma.h
21.74 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
iop3xx.h
11.74 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
iop_adma.h
3.82 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
it8152.h
3.85 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
locomo.h
6.98 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
memc.h
696 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
sa1111.h
13.49 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
scoop.h
1.93 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ssp.h
626 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: ssp.h
Close
/* * ssp.h * * Copyright (C) 2003 Russell King, All Rights Reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef SSP_H #define SSP_H struct ssp_state { unsigned int cr0; unsigned int cr1; }; int ssp_write_word(u16 data); int ssp_read_word(u16 *data); int ssp_flush(void); void ssp_enable(void); void ssp_disable(void); void ssp_save_state(struct ssp_state *ssp); void ssp_restore_state(struct ssp_state *ssp); int ssp_init(void); void ssp_exit(void); #endif