blob: e85b8f5a7d0b801aca63ba629e92830d844dcad2 [file] [log] [blame]
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +01001#ifndef _FDT_HANDLER_H
2#define _FDT_HANDLER_H
3
4#include "boot_params.h"
5#include "fdt.h"
Andrew Scull265ada92018-07-30 15:19:01 +01006#include "mm.h"
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +01007
Andrew Scull265ada92018-07-30 15:19:01 +01008bool fdt_get_boot_params(paddr_t fdt_addr, struct boot_params *p);
9bool fdt_patch(paddr_t fdt_addr, struct boot_params_update *p);
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010010
11#endif /* _FDT_HANDLER_H */