Deleted Added
sdiff udiff text old ( 7950:1120b07dd4b0 ) new ( 8062:ef46ec5373dd )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 572 unchanged lines hidden (view full) ---

581
582 SERIALIZE_ARRAY(dmaBuffer, height * width);
583 SERIALIZE_SCALAR(startTime);
584 SERIALIZE_SCALAR(startAddr);
585 SERIALIZE_SCALAR(maxAddr);
586 SERIALIZE_SCALAR(curAddr);
587 SERIALIZE_SCALAR(waterMark);
588 SERIALIZE_SCALAR(dmaPendingNum);
589}
590
591void
592Pl111::unserialize(Checkpoint *cp, const std::string &section)
593{
594 DPRINTF(PL111, "Unserializing ARM PL111\n");
595
596 uint32_t lcdTiming0_serial;

--- 65 unchanged lines hidden (view full) ---

662 UNSERIALIZE_ARRAY(dmaBuffer, height * width);
663 UNSERIALIZE_SCALAR(startTime);
664 UNSERIALIZE_SCALAR(startAddr);
665 UNSERIALIZE_SCALAR(maxAddr);
666 UNSERIALIZE_SCALAR(curAddr);
667 UNSERIALIZE_SCALAR(waterMark);
668 UNSERIALIZE_SCALAR(dmaPendingNum);
669
670 updateVideoParams();
671 if (vncserver)
672 vncserver->setDirty();
673}
674
675void
676Pl111::generateInterrupt()
677{

--- 24 unchanged lines hidden ---