2007-10-29 02:42:18 +03:00
|
|
|
/*
|
2022-10-28 14:56:27 +03:00
|
|
|
* PowerMac NVRAM emulation
|
2007-10-29 02:42:18 +03:00
|
|
|
*
|
|
|
|
* Copyright (c) 2004-2007 Fabrice Bellard
|
|
|
|
* Copyright (c) 2007 Jocelyn Mayer
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2016-06-29 14:47:03 +03:00
|
|
|
|
2022-10-28 14:56:27 +03:00
|
|
|
#ifndef MAC_NVRAM_H
|
|
|
|
#define MAC_NVRAM_H
|
2007-10-29 02:42:18 +03:00
|
|
|
|
2012-12-17 21:19:49 +04:00
|
|
|
#include "exec/memory.h"
|
2013-01-24 03:04:00 +04:00
|
|
|
#include "hw/sysbus.h"
|
2011-07-26 15:26:19 +04:00
|
|
|
|
2022-10-28 14:56:28 +03:00
|
|
|
#define MACIO_NVRAM_SIZE 0x2000
|
2007-10-29 02:42:18 +03:00
|
|
|
|
2013-01-24 03:04:00 +04:00
|
|
|
#define TYPE_MACIO_NVRAM "macio-nvram"
|
2020-09-16 21:25:19 +03:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(MacIONVRAMState, MACIO_NVRAM)
|
2013-01-24 03:04:00 +04:00
|
|
|
|
2020-09-03 23:43:22 +03:00
|
|
|
struct MacIONVRAMState {
|
2013-01-24 03:04:00 +04:00
|
|
|
/*< private >*/
|
|
|
|
SysBusDevice parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
|
|
|
uint32_t size;
|
|
|
|
uint32_t it_shift;
|
|
|
|
|
|
|
|
MemoryRegion mem;
|
|
|
|
uint8_t *data;
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
2007-10-29 02:42:18 +03:00
|
|
|
|
2022-10-28 14:56:27 +03:00
|
|
|
void pmac_format_nvram_partition(MacIONVRAMState *nvr, int len);
|
|
|
|
|
|
|
|
#endif /* MAC_NVRAM_H */
|