OSDev.org

The Place to Start for Operating System Developers
It is currently Tue Apr 16, 2024 5:18 pm

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: How to enable AVX in a UEFI application?
PostPosted: Sun Feb 04, 2018 9:56 pm 
Offline

Joined: Wed Sep 21, 2016 9:39 am
Posts: 24
I have a simple working UEFI application except avx instructions don't work. Host supports AVX and I'm using the latest version of virtualbox which supports avx and the following works (doesn't hang)

Code:
movdqa    xmm0, dqword[testmem]


testmem is defined elsewhere as

Code:
align 32
testmem:   rb   128


However the following causes the program to hang up, and not proceed.

Code:
vmovdqa    ymm0, qqword[testmem]


I have tried enabling AVX with

Code:
mov     rcx, 0
xgetbv
or      rax, 0007h
xsetbv


But it doesn't help.

What am I missing?


Top
 Profile  
 
 Post subject: Re: How to enable AVX in a UEFI application?
PostPosted: Sun Feb 04, 2018 10:11 pm 
Offline
Member
Member
User avatar

Joined: Sat Dec 27, 2014 9:11 am
Posts: 901
Location: Maadi, Cairo, Egypt
I enable AVX this way.
Code:
   ; enable AVX
   mov rax, cr4
   or eax, 0x40000
   mov cr4, rax

   mov rcx, 0
   xgetbv

   or eax, 6
   mov rcx, 0
   xsetbv

_________________
You know your OS is advanced when you stop using the Intel programming guide as a reference.


Top
 Profile  
 
 Post subject: Re: How to enable AVX in a UEFI application?
PostPosted: Sun Feb 04, 2018 10:48 pm 
Offline

Joined: Wed Sep 21, 2016 9:39 am
Posts: 24
omarrx024 wrote:
I enable AVX this way.
Code:
   ; enable AVX
   mov rax, cr4
   or eax, 0x40000
   mov cr4, rax

   mov rcx, 0
   xgetbv

   or eax, 6
   mov rcx, 0
   xsetbv


THANK YOU SOOOO MUCH!!! I've spent hours googling and reading intel manuals etc and your code just works! Awesome man!

=D> =D> =D> =D>


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 6 hours


Who is online

Users browsing this forum: 0xY and 440 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group