The maternity has 2 beds. Admissions are made at the beginning of the day. With each day, there is a probability of $1/2$ that no admission will arrive and probability $1/2$ that only one potential admission will arrive. A patient can be admitted only if there is an open bed at the beginning of the day. Half of all patients are discharged after one day and all patients that have stayed one day are discharged at the end of the second day.
What is the fraction of days that all beds are utilised?
I have no idea how to start this one up. I especially don't know what the bolded part means. What if there's one patient?

In all Markov-chain problems, the first thing to set up is the state space; in your case the system would be described by pairs which indicate the state of the beds, say $e$ for empty, $f$ for full and $d$ for discharging. So one state would be a pair, for instance $\{e, d\}$ would indicate that one bed is empty and one bed contains a patient that will leave on the next day. One possible state-space describing the clinic is, $$ \mathcal{S} = \big\{\{e,e\}, \{e,d\}, \{e,f\}, \{d,f\}\big\}. $$ Note that in the problem (and in the model) there is no ordering in the beds and $\{e,d\}$ is the same as $\{d,e\}$; note also that the case $\{f,f\}$ is impossible because two guests cannot arrive together and, in case one bed is $f$ on one day it would become $d$ on the following day.
Once the state space is defined, you have to define the transition function which gives the probability of the next state given the current state. In such a small problem can be done by plain enumeration of cases with their associated probabilities $p$:
Now, you can draw the transition diagram and set up the transition probability matrix. You can find the stationary probabilities and compute the average time spent in each state.
I hope this helps getting you on track!