Add this function to your child-theme’s functions.php file.
function graphene_move_homepage_panes(){
remove_action( 'graphene_bottom_content', 'graphene_display_homepage_panes' );
add_action( 'graphene_top_content', 'graphene_display_homepage_panes' );
}
add_action( 'template_redirect', 'graphene_move_homepage_panes' );
NOTE: If your child-theme’s functions.php file is empty, put the above code between <?php and ?>