diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2014-02-15 20:16:19 +0100 |
---|---|---|
committer | Paul Kocialkowski <contact@paulk.fr> | 2014-02-15 20:58:20 +0100 |
commit | 005645221f3d4dd432970f8f28d9092d66d61213 (patch) | |
tree | 6ff93168ae04da425313ada33631fee507cfd7da /samsung-ipc/devices/i9300/i9300.h | |
parent | ec82c3a5350b8747e1c0a7a0393ab0374dd9fbd5 (diff) | |
download | external_libsamsung-ipc-005645221f3d4dd432970f8f28d9092d66d61213.zip external_libsamsung-ipc-005645221f3d4dd432970f8f28d9092d66d61213.tar.gz external_libsamsung-ipc-005645221f3d4dd432970f8f28d9092d66d61213.tar.bz2 |
ipc: Consistent coding style and major cleanup
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'samsung-ipc/devices/i9300/i9300.h')
-rw-r--r-- | samsung-ipc/devices/i9300/i9300.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/samsung-ipc/devices/i9300/i9300.h b/samsung-ipc/devices/i9300/i9300.h new file mode 100644 index 0000000..9e63c4b --- /dev/null +++ b/samsung-ipc/devices/i9300/i9300.h @@ -0,0 +1,49 @@ +/* + * This file is part of libsamsung-ipc. + * + * Copyright (C) 2013-2014 Paul Kocialkowski <contact@paulk.fr> + * + * libsamsung-ipc is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * libsamsung-ipc is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with libsamsung-ipc. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef __I9300_H__ +#define __I9300_H__ + +#define I9300_MODEM_IMAGE_SIZE 0x1000000 +#define I9300_PSI_OFFSET 0x1000 +#define I9300_PSI_SIZE 0xE000 +#define I9300_EBL_OFFSET 0xF000 +#define I9300_EBL_SIZE 0x19000 +#define I9300_SEC_START_OFFSET 0x9FF800 +#define I9300_SEC_START_SIZE 0x800 +#define I9300_FIRMWARE_OFFSET 0x28000 +#define I9300_FIRMWARE_SIZE 0x9D7800 +#define I9300_NV_DATA_OFFSET 0xA00000 +#define I9300_NV_DATA_SIZE 0x200000 + +#define I9300_MODEM_IMAGE_DEVICE "/dev/block/mmcblk0p7" + +struct i9300_transport_data { + int fd; +}; + +extern struct ipc_client_ops i9300_fmt_ops; +extern struct ipc_client_ops i9300_rfs_ops; +extern struct ipc_client_handlers i9300_handlers; +extern struct ipc_client_gprs_specs i9300_gprs_specs; +extern struct ipc_client_nv_data_specs i9300_nv_data_specs; + +#endif + +// vim:ts=4:sw=4:expandtab |