Giter Site home page Giter Site logo

Comments (2)

avpatel avatar avpatel commented on July 26, 2024

Good catch.

Yes, the LIBFDT_DATA64() needs to be fixed. Basically, we should be joining two u32 for forming u64 in LIBFDT_DATA64()

Regards,
Anup

from xvisor.

llabadie avatar llabadie commented on July 26, 2024

The MMU was not enabled and setup properly in my previous explanation. Causing the A bit in SCTRL_EL2 register to be ignored. This is why wrong alignment triggered an exception.

Wrong alignment exception were triggered in libs/common/libfdt.c, arch/arm/cpu/arm64/cpu_memcpy.S and arch/arm/cpu/arm64/cpu_memset.S

Now that the MMU is correctly enabled, Xvisor is not stuck anymore. The fact that the alignment is wrong still stands but triggers no exception.

Before fixing MMU, I tried manually fixing LIBFDT_DATA64 alignment. This is not very elegant but does not seem to break anything else:

#define LIBFDT_DATA64(ptr) vmm_be64_to_cpu(*((u64*)ptr))

#define LIBFDT_DATA64(ptr)	lifdt_data64_alignement(((u64*)ptr))

static u64 lifdt_data64_alignement(u64* ptr)
{
	u64 tmp_val;
	if(((u64) ptr % 8) == 0)
	{
		tmp_val = *ptr;
	}
	else
	{
		u64 d1 = *((u32*) ptr);
		u64 d2 = *(((u32*)ptr)+1);

		d2 = d2 << 32;
		tmp_val = d1 | d2;
	}
	tmp_val = vmm_be64_to_cpu(tmp_val);
	return tmp_val;
}

Do you think this would be interesting? If yes, I can send a pull request.

from xvisor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.